diff --git a/linter_exclusions.yml b/linter_exclusions.yml index f07809cecbb..f3b7118d4f9 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -790,6 +790,9 @@ backup vault backup-properties set: soft_delete_feature_state: rule_exclusions: - option_length_too_long + cross_region_restore_flag: + rule_exclusions: + - option_length_too_long batch account create: parameters: encryption_key_identifier: 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 424822cf953..83147877bcc 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 @@ -100,10 +100,18 @@ def backup_protected_items_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_protected_items +def backup_protected_items_crr_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).backup_protected_items_crr + + def backup_operation_statuses_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_operation_statuses +def crr_operation_status_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).crr_operation_status + + def backups_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backups @@ -112,6 +120,10 @@ def backup_jobs_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_jobs +def backup_crr_jobs_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).backup_crr_jobs + + def backup_workload_items_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_workload_items @@ -121,6 +133,10 @@ def job_details_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).job_details +def backup_crr_job_details_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).backup_crr_job_details + + def job_cancellations_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).job_cancellations @@ -130,13 +146,26 @@ def recovery_points_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).recovery_points +def recovery_points_crr_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).recovery_points_crr + + def restores_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).restores +def cross_region_restore_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).cross_region_restore + + def item_level_recovery_connections_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).item_level_recovery_connections def backup_resource_vault_config_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_resource_vault_configs + + +# Azure Active Directory Client Factories +def aad_properties_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).aad_properties 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 a2669ea261c..b138f8d4c9a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -78,6 +78,7 @@ def load_arguments(self, _): with self.argument_context('backup vault backup-properties set') as c: c.argument('backup_storage_redundancy', arg_type=get_enum_type(['GeoRedundant', 'LocallyRedundant']), help='Sets backup storage properties for a Recovery Services vault.') c.argument('soft_delete_feature_state', arg_type=get_enum_type(['Enable', 'Disable']), help='Set soft-delete feature state for a Recovery Services Vault.') + c.argument('cross_region_restore_flag', arg_type=get_enum_type(['True', 'False']), help='Set cross-region-restore feature state for a Recovery Services Vault. Default: False.') # Container with self.argument_context('backup container') as c: @@ -87,9 +88,12 @@ def load_arguments(self, _): with self.argument_context('backup container show') as c: c.argument('name', container_name_type, options_list=['--name', '-n'], help='Name of the container. You can use the backup container list command to get the name of a container.') c.argument('backup_management_type', backup_management_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to show container in secondary region.') + with self.argument_context('backup container list') as c: c.argument('vault_name', vault_name_type, id_part=None) c.argument('backup_management_type', backup_management_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to list containers in secondary region.') with self.argument_context('backup container unregister') as c: c.argument('backup_management_type', backup_management_type) @@ -114,6 +118,7 @@ def load_arguments(self, _): c.argument('name', item_name_type, options_list=['--name', '-n'], help='Name of the backed up item. You can use the backup item list command to get the name of a backed up item.') c.argument('backup_management_type', backup_management_type) c.argument('workload_type', workload_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to show item in secondary region.') # TODO: Need to use item.id once https://github.com/Azure/msrestazure-for-python/issues/80 is fixed. with self.argument_context('backup item set-policy') as c: @@ -126,6 +131,7 @@ def load_arguments(self, _): c.argument('vault_name', vault_name_type, id_part=None) c.argument('backup_management_type', arg_type=get_enum_type(allowed_backup_management_types + ["MAB"]), help=backup_management_type_help) c.argument('workload_type', workload_type) + c.argument('use_secondary_region', action='store_true', help='Use this flag to list items in secondary region.') # Policy with self.argument_context('backup policy') as c: @@ -170,12 +176,14 @@ def load_arguments(self, _): 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.') 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 show recoverypoints in secondary region.') # Protection with self.argument_context('backup protection') as c: @@ -251,6 +259,7 @@ def load_arguments(self, _): c.argument('diskslist', diskslist_type) 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.') with self.argument_context('backup restore restore-azurefileshare') as c: c.argument('resolve_conflict', resolve_conflict_type) @@ -296,6 +305,7 @@ def load_arguments(self, _): for command in ['show', 'stop', 'wait']: with self.argument_context('backup job ' + command) as c: c.argument('name', job_name_type, help='Name of the job. You can use the backup job list command to get the name of a job.') + c.argument('use_secondary_region', action='store_true', help='Use this flag to show recoverypoints in secondary region.') with self.argument_context('backup job list') as c: c.argument('vault_name', vault_name_type, id_part=None) @@ -304,6 +314,7 @@ def load_arguments(self, _): 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('use_secondary_region', action='store_true', help='Use this flag to show recoverypoints in secondary region.') with self.argument_context('backup job wait') as c: c.argument('timeout', type=int, help='Maximum time, in seconds, to wait before aborting.') 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 2391776d09d..bcfac0a1769 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -23,14 +23,69 @@ BackupResourceVaultConfig, BackupResourceVaultConfigResource, DiskExclusionProperties, ExtendedProperties from azure.cli.core.util import CLIError +from azure.cli.core.azclierror import RequiredArgumentMissingError, InvalidArgumentValueError 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) + 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) logger = get_logger(__name__) +# Mapping of workload type +secondary_region_map = {"eastasia": "southeastasia", + "southeastasia": "eastasia", + "australiaeast": "australiasoutheast", + "australiasoutheast": "australiaeast", + "australiacentral": "australiacentral2", + "australiacentral2": "australiacentral", + "brazilsouth": "southcentralus", + "canadacentral": "canadaeast", + "canadaeast": "canadacentral", + "chinanorth": "chinaeast", + "chinaeast": "chinanorth", + "chinanorth2": "chinaeast2", + "chinaeast2": "chinanorth2", + "northeurope": "westeurope", + "westeurope": "northeurope", + "francecentral": "francesouth", + "francesouth": "francecentral", + "germanycentral": "germanynortheast", + "germanynortheast": "germanycentral", + "centralindia": "southindia", + "southindia": "centralindia", + "westindia": "southindia", + "japaneast": "japanwest", + "japanwest": "japaneast", + "koreacentral": "koreasouth", + "koreasouth": "koreacentral", + "eastus": "westus", + "westus": "eastus", + "eastus2": "centralus", + "centralus": "eastus2", + "northcentralus": "southcentralus", + "southcentralus": "northcentralus", + "westus2": "westcentralus", + "westcentralus": "westus2", + "centraluseuap": "eastus2euap", + "eastus2euap": "centraluseuap", + "southafricanorth": "southafricawest", + "southafricawest": "southafricanorth", + "switzerlandnorth": "switzerlandwest", + "switzerlandwest": "switzerlandnorth", + "ukwest": "uksouth", + "uksouth": "ukwest", + "uaenorth": "uaecentral", + "uaecentral": "uaenorth", + "usdodeast": "usdodcentral", + "usdodcentral": "usdodeast", + "usgovarizona": "usgovtexas", + "usgovtexas": "usgovarizona", + "usgoviowa": "usgovvirginia", + "usgovvirginia": "usgovtexas"} + fabric_name = "Azure" default_policy_name = "DefaultPolicy" os_windows = 'Windows' @@ -91,7 +146,7 @@ def list_vaults(client, resource_group_name=None): def set_backup_properties(cmd, client, vault_name, resource_group_name, backup_storage_redundancy=None, - soft_delete_feature_state=None): + soft_delete_feature_state=None, cross_region_restore_flag=None): if soft_delete_feature_state: soft_delete_feature_state += "d" vault_config_client = backup_resource_vault_config_cf(cmd.cli_ctx) @@ -102,7 +157,11 @@ def set_backup_properties(cmd, client, vault_name, resource_group_name, backup_s vault_config_resource = BackupResourceVaultConfigResource(properties=vault_config) return vault_config_client.update(vault_name, resource_group_name, vault_config_resource) - backup_storage_config = BackupResourceConfig(storage_model_type=backup_storage_redundancy) + if cross_region_restore_flag is not None: + cross_region_restore_flag = bool(cross_region_restore_flag.lower() == 'true') + + backup_storage_config = BackupResourceConfig(storage_model_type=backup_storage_redundancy, + cross_region_restore_flag=cross_region_restore_flag) backup_storage_config_resource = BackupResourceConfigResource(properties=backup_storage_config) return client.update(vault_name, resource_group_name, backup_storage_config_resource) @@ -313,8 +372,9 @@ def update_protection_for_vm(cmd, client, resource_group_name, vault_name, item, def show_item(cmd, client, resource_group_name, vault_name, container_name, name, container_type="AzureIaasVM", - item_type="VM"): - items = list_items(cmd, client, resource_group_name, vault_name, container_name, container_type, item_type) + item_type="VM", use_secondary_region=None): + items = list_items(cmd, client, resource_group_name, vault_name, container_name, container_type, item_type, + use_secondary_region) if _is_native_name(name): filtered_items = [item for item in items if item.name == name] @@ -325,11 +385,13 @@ def show_item(cmd, client, resource_group_name, vault_name, container_name, name def list_items(cmd, client, resource_group_name, vault_name, container_name=None, container_type="AzureIaasVM", - item_type="VM"): + item_type="VM", use_secondary_region=None): filter_string = _get_filter_string({ 'backupManagementType': container_type, 'itemType': item_type}) + if use_secondary_region: + client = backup_protected_items_crr_cf(cmd.cli_ctx) items = client.list(vault_name, resource_group_name, filter_string) paged_items = _get_list_from_paged_response(items) if container_name: @@ -376,8 +438,6 @@ def update_policy_for_item(cmd, client, resource_group_name, vault_name, item, p def backup_now(cmd, client, resource_group_name, vault_name, item, retain_until): - if retain_until is None: - retain_until = (datetime.utcnow() + timedelta(days=30)).strftime('%d-%m-%Y') # 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) @@ -390,19 +450,27 @@ def backup_now(cmd, client, resource_group_name, vault_name, item, retain_until) def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, # pylint: disable=redefined-builtin - container_type="AzureIaasVM", item_type="VM"): + container_type="AzureIaasVM", item_type="VM", use_secondary_region=None): item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, - item_name, container_type, item_type) + item_name, container_type, item_type, use_secondary_region) _validate_item(item) # 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) + if use_secondary_region: + client = recovery_points_crr_cf(cmd.cli_ctx) + recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, None) + paged_rps = _get_list_from_paged_response(recovery_points) + filtered_rps = [rp for rp in paged_rps if rp.name.lower() == name.lower()] + return _get_none_one_or_many(filtered_rps) + return client.get(vault_name, resource_group_name, fabric_name, container_uri, item_uri, name) -def list_recovery_points(client, resource_group_name, vault_name, item, start_date=None, end_date=None): +def list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None, + use_secondary_region=None): # 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) @@ -413,6 +481,9 @@ def list_recovery_points(client, resource_group_name, vault_name, item, start_da 'startDate': query_start_date, 'endDate': query_end_date}) + 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) paged_recovery_points = _get_list_from_paged_response(recovery_points) @@ -453,12 +524,12 @@ def _should_use_original_storage_account(recovery_point, restore_to_staging_stor # 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): + diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None): item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, - item_name, "AzureIaasVM", "VM") + 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") + container_name, item_name, rp_name, "AzureIaasVM", "VM", use_secondary_region) vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) vault_location = vault.location @@ -521,6 +592,22 @@ def restore_disks(cmd, client, resource_group_name, vault_name, container_name, restore_disk_lun_list=restore_disk_lun_list) 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.") + azure_region = secondary_region_map[vault_location] + aad_client = aad_properties_cf(cmd.cli_ctx) + aad_result = aad_client.get(azure_region) + rp_client = recovery_points_cf(cmd.cli_ctx) + crr_access_token = rp_client.get_access_token(vault_name, resource_group_name, fabric_name, container_uri, + item_uri, rp_name, aad_result).properties + crr_access_token.object_type = "CrrAccessToken" + crr_client = cross_region_restore_cf(cmd.cli_ctx) + 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 result = client.trigger(vault_name, resource_group_name, fabric_name, container_uri, item_uri, rp_name, @@ -612,8 +699,8 @@ def resume_protection(cmd, client, resource_group_name, vault_name, item, policy return update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy) -def list_jobs(client, resource_group_name, vault_name, status=None, operation=None, start_date=None, end_date=None, - backup_management_type=None): +def list_jobs(cmd, client, resource_group_name, vault_name, status=None, operation=None, start_date=None, end_date=None, + backup_management_type=None, use_secondary_region=None): query_end_date, query_start_date = _get_query_dates(end_date, start_date) filter_string = _get_filter_string({ @@ -623,29 +710,59 @@ def list_jobs(client, resource_group_name, vault_name, status=None, operation=No 'endTime': query_end_date, 'backupManagementType': backup_management_type}) + if use_secondary_region: + vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) + vault_location = vault.location + azure_region = secondary_region_map[vault_location] + client = backup_crr_jobs_cf(cmd.cli_ctx) + return _get_list_from_paged_response(client.list(azure_region, filter_string, resource_id=vault.id)) + return _get_list_from_paged_response(client.list(vault_name, resource_group_name, filter_string)) -def show_job(client, resource_group_name, vault_name, name): +def show_job(cmd, client, resource_group_name, vault_name, name, use_secondary_region=None): + if use_secondary_region: + vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) + vault_location = vault.location + azure_region = secondary_region_map[vault_location] + client = backup_crr_job_details_cf(cmd.cli_ctx) + return client.get(azure_region, vault.id, name) return client.get(vault_name, resource_group_name, name) -def stop_job(client, resource_group_name, vault_name, name): +def stop_job(client, resource_group_name, vault_name, name, use_secondary_region=None): + if use_secondary_region: + raise InvalidArgumentValueError("Secondary region jobs do not support cancellation as of now.") client.trigger(vault_name, resource_group_name, name) -def wait_for_job(client, resource_group_name, vault_name, name, timeout=None): +def wait_for_job(cmd, client, resource_group_name, vault_name, name, timeout=None, use_secondary_region=None): logger.warning("Waiting for job '%s' ...", name) start_timestamp = datetime.utcnow() - job_details = client.get(vault_name, resource_group_name, name) - while _job_in_progress(job_details.properties.status): - if timeout: - elapsed_time = datetime.utcnow() - start_timestamp - if elapsed_time.seconds > timeout: - logger.warning("Command timed out while waiting for job '%s'", name) - break + if use_secondary_region: + vault = vaults_cf(cmd.cli_ctx).get(resource_group_name, vault_name) + vault_location = vault.location + azure_region = secondary_region_map[vault_location] + client = backup_crr_job_details_cf(cmd.cli_ctx) + job_details = client.get(azure_region, vault.id, name) + while _job_in_progress(job_details.properties.status): + if timeout: + elapsed_time = datetime.utcnow() - start_timestamp + if elapsed_time.seconds > timeout: + logger.warning("Command timed out while waiting for job '%s'", name) + break + job_details = client.get(azure_region, vault.id, name) + time.sleep(30) + else: job_details = client.get(vault_name, resource_group_name, name) - time.sleep(30) + while _job_in_progress(job_details.properties.status): + if timeout: + elapsed_time = datetime.utcnow() - start_timestamp + if elapsed_time.seconds > timeout: + logger.warning("Command timed out while waiting for job '%s'", name) + break + job_details = client.get(vault_name, resource_group_name, name) + time.sleep(30) return job_details # Client Utilities @@ -901,6 +1018,28 @@ def _track_backup_operation(cli_ctx, resource_group, result, vault_name): return operation_status +def _track_backup_crr_job(cli_ctx, result, azure_region, resource_id): + crr_job_details_client = backup_crr_job_details_cf(cli_ctx) + + operation_status = _track_backup_crr_operation(cli_ctx, result, azure_region) + + if operation_status.properties: + job_id = operation_status.properties.job_id + job_details = crr_job_details_client.get(azure_region, resource_id, job_id) + return job_details + + +def _track_backup_crr_operation(cli_ctx, result, azure_region): + crr_operation_statuses_client = crr_operation_status_cf(cli_ctx) + + operation_id = _get_operation_id_from_header(result.response.headers['Azure-AsyncOperation']) + operation_status = crr_operation_statuses_client.get(azure_region, operation_id) + while operation_status.status == OperationStatusValues.in_progress.value: + time.sleep(1) + operation_status = crr_operation_statuses_client.get(azure_region, operation_id) + return operation_status + + def _track_refresh_operation(cli_ctx, result, vault_name, resource_group): protection_container_refresh_operation_results_client = protection_container_refresh_operation_results_cf(cli_ctx) 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 0274fe33ca3..d36faf1fdb0 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,6 +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 +from azure.cli.core.azclierror import InvalidArgumentValueError fabric_name = "Azure" backup_management_type = "AzureStorage" @@ -196,7 +197,15 @@ def restore_AzureFileShare(cmd, client, resource_group_name, vault_name, rp_name return helper.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) -def list_recovery_points(client, resource_group_name, vault_name, item, start_date=None, end_date=None): +def list_recovery_points(client, resource_group_name, vault_name, item, start_date=None, end_date=None, + use_secondary_region=None): + if use_secondary_region: + raise InvalidArgumentValueError( + """ + --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. + """) + # Get container and item URIs container_uri = helper.get_protection_container_uri_from_id(item.id) item_uri = helper.get_protected_item_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 f51497cb2c9..62e7f603dd7 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 @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from datetime import datetime, timezone, timedelta +from datetime import datetime, timedelta, timezone import azure.cli.command_modules.backup.custom as custom import azure.cli.command_modules.backup.custom_afs as custom_afs import azure.cli.command_modules.backup.custom_help as custom_help @@ -18,12 +18,15 @@ def show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type=None, - status="Registered"): - return common.show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type, status) + status="Registered", use_secondary_region=None): + return common.show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type, status, + use_secondary_region) -def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered"): - return common.list_containers(client, resource_group_name, vault_name, backup_management_type, status) +def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered", + use_secondary_region=None): + return common.list_containers(client, resource_group_name, vault_name, backup_management_type, status, + use_secondary_region) def show_policy(client, resource_group_name, vault_name, name): @@ -47,45 +50,47 @@ def create_policy(client, resource_group_name, vault_name, name, policy, backup_ def show_item(cmd, client, resource_group_name, vault_name, container_name, name, backup_management_type=None, - workload_type=None): + workload_type=None, use_secondary_region=None): return common.show_item(cmd, client, resource_group_name, vault_name, container_name, name, - backup_management_type, workload_type) + backup_management_type, workload_type, use_secondary_region) def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, container_name=None, - backup_management_type=None): + backup_management_type=None, use_secondary_region=None): return common.list_items(cmd, client, resource_group_name, vault_name, workload_type, - container_name, backup_management_type) + container_name, backup_management_type, use_secondary_region) def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, - workload_type=None, backup_management_type=None): + workload_type=None, backup_management_type=None, use_secondary_region=None): return common.show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, - item_name, name, workload_type, backup_management_type) + item_name, name, workload_type, backup_management_type, use_secondary_region) 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): + 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, - backup_management_type, workload_type) + 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 item.properties.backup_management_type.lower() == "azureiaasvm": - return custom.list_recovery_points(client, resource_group_name, vault_name, item, start_date, end_date) + return custom.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() == "azurestorage": return custom_afs.list_recovery_points(client, resource_group_name, vault_name, item, start_date, - end_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) + start_date, end_date, use_secondary_region=use_secondary_region) return None @@ -311,10 +316,10 @@ 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): + diskslist=None, restore_as_unmanaged_disks=None, use_secondary_region=None): 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) + restore_only_osdisk, diskslist, restore_as_unmanaged_disks, use_secondary_region) def enable_for_azurefileshare(cmd, client, resource_group_name, vault_name, policy_name, storage_account, 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 605f36061fe..562ecc11d4d 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 @@ -6,7 +6,7 @@ import azure.cli.command_modules.backup.custom_help as custom_help from azure.cli.command_modules.backup._client_factory import backup_protected_items_cf, \ - protection_containers_cf, 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 # pylint: disable=import-error @@ -24,16 +24,27 @@ def show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type=None, - status="Registered"): + status="Registered", use_secondary_region=None): + container_type = custom_help.validate_and_extract_container_type(name, backup_management_type) + if use_secondary_region: + if container_type and container_type.lower() == "azurestorage": + raise InvalidArgumentValueError( + """ + --use-secondary-region flag is not supported for container of type AzureStorage. + Please either remove the flag or query for any other container type. + """) + if custom_help.is_native_name(name): return protection_containers_cf(cmd.cli_ctx).get(vault_name, resource_group_name, fabric_name, name) - container_type = custom_help.validate_and_extract_container_type(name, backup_management_type) - containers = _get_containers(client, container_type, status, resource_group_name, vault_name, name) + containers = _get_containers(client, container_type, status, resource_group_name, vault_name, name, + use_secondary_region) return custom_help.get_none_one_or_many(containers) -def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered"): - return _get_containers(client, backup_management_type, status, resource_group_name, vault_name) +def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered", + use_secondary_region=None): + return _get_containers(client, backup_management_type, status, resource_group_name, vault_name, + use_secondary_region=use_secondary_region) def show_policy(client, resource_group_name, vault_name, name): @@ -51,14 +62,22 @@ def list_policies(client, resource_group_name, vault_name, workload_type=None, b def show_item(cmd, client, resource_group_name, vault_name, container_name, name, backup_management_type=None, - workload_type=None): - if custom_help.is_native_name(name) and custom_help.is_native_name(container_name): - client = protected_items_cf(cmd.cli_ctx) - return client.get(vault_name, resource_group_name, fabric_name, container_name, name) + workload_type=None, use_secondary_region=None): container_type = custom_help.validate_and_extract_container_type(container_name, backup_management_type) + if use_secondary_region: + if container_type and container_type.lower() == "azurestorage": + raise InvalidArgumentValueError( + """ + --use-secondary-region flag is not supported for container of type AzureStorage. + Please either remove the flag or query for any other container type. + """) + else: + if custom_help.is_native_name(name) and custom_help.is_native_name(container_name): + client = protected_items_cf(cmd.cli_ctx) + return client.get(vault_name, resource_group_name, fabric_name, container_name, name) items = list_items(cmd, client, resource_group_name, vault_name, workload_type, container_name, - container_type) + container_type, use_secondary_region) if custom_help.is_native_name(name): filtered_items = [item for item in items if item.name.lower() == name.lower()] @@ -69,12 +88,20 @@ def show_item(cmd, client, resource_group_name, vault_name, container_name, name def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, container_name=None, - container_type=None): + container_type=None, use_secondary_region=None): workload_type = _check_map(workload_type, workload_type_map) filter_string = custom_help.get_filter_string({ 'backupManagementType': container_type, 'itemType': workload_type}) + if use_secondary_region: + if container_type and container_type.lower() == "azurestorage": + raise InvalidArgumentValueError( + """ + --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. + """) + client = backup_protected_items_crr_cf(cmd.cli_ctx) items = client.list(vault_name, resource_group_name, filter_string) paged_items = custom_help.get_list_from_paged_response(items) @@ -89,11 +116,11 @@ def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, - workload_type=None, backup_management_type=None): + workload_type=None, backup_management_type=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, - backup_management_type, workload_type) + backup_management_type, workload_type, use_secondary_region) custom_help.validate_item(item) if isinstance(item, list): @@ -103,6 +130,20 @@ def show_recovery_point(cmd, client, resource_group_name, vault_name, container_ container_uri = custom_help.get_protection_container_uri_from_id(item.id) item_uri = custom_help.get_protected_item_uri_from_id(item.id) + container_type = custom_help.validate_and_extract_container_type(container_name, backup_management_type) + if use_secondary_region: + if container_type and container_type.lower() == "azurestorage": + raise InvalidArgumentValueError( + """ + --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. + """) + client = recovery_points_crr_cf(cmd.cli_ctx) + recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, None) + paged_rps = custom_help.get_list_from_paged_response(recovery_points) + filtered_rps = [rp for rp in paged_rps if rp.name.lower() == name.lower()] + return custom_help.get_none_one_or_many(filtered_rps) + return client.get(vault_name, resource_group_name, fabric_name, container_uri, item_uri, name) @@ -119,7 +160,8 @@ def new_policy(client, resource_group_name, vault_name, policy, policy_name, con return client.create_or_update(vault_name, resource_group_name, policy_name, policy_object) -def _get_containers(client, backup_management_type, status, resource_group_name, vault_name, container_name=None): +def _get_containers(client, backup_management_type, status, resource_group_name, vault_name, container_name=None, + use_secondary_region=None): filter_dict = { 'backupManagementType': backup_management_type, 'status': status @@ -130,6 +172,14 @@ def _get_containers(client, backup_management_type, status, resource_group_name, filter_string = custom_help.get_filter_string(filter_dict) + if use_secondary_region: + if backup_management_type.lower() == "azurestorage": + raise InvalidArgumentValueError( + """ + --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. + """) + paged_containers = client.list(vault_name, resource_group_name, filter_string) containers = custom_help.get_list_from_paged_response(paged_containers) diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_help.py b/src/azure-cli/azure/cli/command_modules/backup/custom_help.py index 1b4fddf78b1..f212bdd46e8 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_help.py @@ -374,7 +374,7 @@ def validate_and_extract_container_type(container_name, backup_management_type): if not is_native_name(container_name) and backup_management_type is None: raise CLIError("""backup management type required""") - if backup_management_type is not None: + if not is_native_name(container_name) and backup_management_type is not None: if backup_management_type in backup_management_type_map.values(): return backup_management_type return backup_management_type_map[backup_management_type] 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 916a5ba86fb..f530fbb59d6 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 @@ -22,7 +22,7 @@ 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 + protectable_containers_cf, backup_protection_containers_cf, backup_protected_items_cf, recovery_points_crr_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 @@ -273,12 +273,12 @@ def show_protectable_instance(items, server_name, protectable_item_type): raise az_error protectable_item_type = _check_map(protectable_item_type, protectable_item_type_map) - # Server Name filter - filtered_items = [item for item in items if item.properties.server_name.lower() == server_name.lower()] - # Protectable Item Type filter - filtered_items = [item for item in filtered_items if + filtered_items = [item for item in items if + item.properties.protectable_item_type is not None and item.properties.protectable_item_type.lower() == protectable_item_type.lower()] + # Server Name filter + filtered_items = [item for item in filtered_items if item.properties.server_name.lower() == server_name.lower()] return cust_help.get_none_one_or_many(filtered_items) @@ -293,7 +293,6 @@ def list_protectable_items(client, resource_group_name, vault_name, workload_typ # Items list items = client.list(vault_name, resource_group_name, filter_string) paged_items = cust_help.get_list_from_paged_response(items) - if container_uri: return [item for item in paged_items if cust_help.get_protection_container_uri_from_id(item.id).lower() == container_uri.lower()] @@ -301,7 +300,7 @@ 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): + extended_info=None, use_secondary_region=None): # 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) @@ -322,6 +321,9 @@ def list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, 'endDate': query_end_date, 'extendedInfo': extended_info}) + 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) paged_recovery_points = cust_help.get_list_from_paged_response(recovery_points) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml index 3fe6ed8b623..6dac95d0010 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-11-12T01%3A55%3A14.2481168Z''\"","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-01-11T09%3A52%3A53.8536721Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:13 GMT + - Mon, 11 Jan 2021 09:52:54 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '204' + - '208' status: code: 201 message: Created @@ -66,7 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.7.8 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:37 GMT + - Mon, 11 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -96,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' status: code: 200 message: OK @@ -108,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.8; Windows 10) AZURECLI/2.14.1 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Thu, 12 Nov 2020 01:55:37 GMT + - Mon, 11 Jan 2021 09:53:16 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +124,11 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:37 GMT + - Mon, 11 Jan 2021 09:53:15 GMT etag: - - '"0x8D886AE0D83E9C8"' + - '"0x8D8B616B7E22B1F"' last-modified: - - Thu, 12 Nov 2020 01:55:38 GMT + - Mon, 11 Jan 2021 09:53:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-11-12T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-12T11:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +167,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:39 GMT + - Mon, 11 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -182,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -190,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-11-12T11:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-11-12T11:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -210,15 +212,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":["2020-11-12T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-12T11:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -227,7 +229,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:39 GMT + - Mon, 11 Jan 2021 09:53:17 GMT expires: - '-1' pragma: @@ -243,7 +245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1191' x-powered-by: - ASP.NET status: @@ -263,12 +265,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -280,7 +282,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:41 GMT + - Mon, 11 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -295,6 +297,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -314,24 +318,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;jlrg1;jlrg1diag","name":"StorageContainer;Storage;jlrg1;jlrg1diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlrg1diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlrg1diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;yeming;yeming","name":"StorageContainer;Storage;yeming;yeming","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"yeming","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '1346' + - '23869' content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:42 GMT + - Mon, 11 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -346,6 +350,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -367,28 +373,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/44fc6ada-2b7d-4618-845d-24b752ad984a?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/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:42 GMT + - Mon, 11 Jan 2021 09:53: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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -396,7 +402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -416,12 +422,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -431,17 +437,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:43 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -461,12 +469,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -476,17 +484,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:45 GMT + - Mon, 11 Jan 2021 09:53: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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -506,12 +516,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -521,17 +531,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:46 GMT + - Mon, 11 Jan 2021 09:53: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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -551,12 +563,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -566,17 +578,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:47 GMT + - Mon, 11 Jan 2021 09:53: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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -596,12 +610,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -611,17 +625,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:49 GMT + - Mon, 11 Jan 2021 09:53: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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -641,12 +657,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -656,17 +672,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:50 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -686,12 +704,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -701,17 +719,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:51 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -731,12 +751,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -746,17 +766,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:55:53 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-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: @@ -776,12 +798,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/44fc6ada-2b7d-4618-845d-24b752ad984a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/98317ba4-de1b-4e00-8d49-6aed2387176d?api-version=2020-10-01 response: body: string: '' @@ -789,7 +811,7 @@ interactions: cache-control: - no-cache date: - - Thu, 12 Nov 2020 01:55:54 GMT + - Mon, 11 Jan 2021 09:53:30 GMT expires: - '-1' pragma: @@ -798,6 +820,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -817,24 +841,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"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;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;yeming;yeming","name":"StorageContainer;Storage;yeming;yeming","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"yeming","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","name":"StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgjjayztgdz3xm7unr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5urjhs4xm3/providers/Microsoft.Storage/storageAccounts/clitestgjjayztgdz3xm7unr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgiv7vnbwdbn;clitestn5zs36l7jwjobnnoc","name":"StorageContainer;Storage;clitest.rgiv7vnbwdbn;clitestn5zs36l7jwjobnnoc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn5zs36l7jwjobnnoc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv7vnbwdbn/providers/Microsoft.Storage/storageAccounts/clitestn5zs36l7jwjobnnoc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","name":"StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestclnhc546p344yu7d6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqluqqnhk6/providers/Microsoft.Storage/storageAccounts/clitestclnhc546p344yu7d6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","name":"StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqtpsymefcd7sld4t6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlcrm23nul/providers/Microsoft.Storage/storageAccounts/clitestqtpsymefcd7sld4t6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgphebleoee4;clitestljt4no4av6azpxct3","name":"StorageContainer;Storage;clitest.rgphebleoee4;clitestljt4no4av6azpxct3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestljt4no4av6azpxct3","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphebleoee4/providers/Microsoft.Storage/storageAccounts/clitestljt4no4av6azpxct3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","name":"StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest35m75cuxsw23uzmpn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3lgndrdni/providers/Microsoft.Storage/storageAccounts/clitest35m75cuxsw23uzmpn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"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.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '4351' + - '28531' content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:55 GMT + - Mon, 11 Jan 2021 09:53:30 GMT expires: - '-1' pragma: @@ -849,6 +873,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -873,18 +899,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -892,11 +918,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:56 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -906,7 +932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -926,18 +952,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -945,11 +971,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:57 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -958,6 +984,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -977,18 +1005,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -996,11 +1024,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:58 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1009,6 +1037,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1028,18 +1058,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1047,11 +1077,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:55:59 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1060,6 +1090,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1079,18 +1111,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1098,11 +1130,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:01 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1111,6 +1143,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1130,18 +1164,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1149,11 +1183,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:02 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1162,6 +1196,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1181,18 +1217,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1200,11 +1236,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:04 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1213,6 +1249,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1232,18 +1270,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1251,11 +1289,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:05 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1264,6 +1302,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1283,18 +1323,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1302,11 +1342,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:06 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1315,6 +1355,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1334,18 +1376,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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/727489f0-49ea-4fb7-84d7-976846dc25cb?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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1353,11 +1395,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:07 GMT + - Mon, 11 Jan 2021 09:53: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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-01 pragma: - no-cache server: @@ -1366,6 +1408,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1385,12 +1429,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/727489f0-49ea-4fb7-84d7-976846dc25cb?api-version=2016-12-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/ffed062e-d2fb-4fd6-978b-84e756ee3126?api-version=2020-10-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"}}' @@ -1402,7 +1446,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:09 GMT + - Mon, 11 Jan 2021 09:53:43 GMT expires: - '-1' pragma: @@ -1417,6 +1461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1436,15 +1482,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + 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=2020-10-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":["2020-11-12T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-12T11:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1453,7 +1499,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:10 GMT + - Mon, 11 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -1468,6 +1514,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1487,24 +1535,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[]}' + 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;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7","name":"azurefileshare;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7","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 content-length: - - '12' + - '1039' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:10 GMT + - Mon, 11 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -1519,13 +1567,17 @@ interactions: - 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 + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -1536,32 +1588,34 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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%3Bac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7?api-version=2020-10-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/93a98601-37a8-4b2a-9a98-e807aaaa101e?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/protectedItems/azurefileshare;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7/operationsStatus/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 12 Nov 2020 01:56:11 GMT + - Mon, 11 Jan 2021 09:54: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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-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;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7/operationResults/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1569,7 +1623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' x-powered-by: - ASP.NET status: @@ -1589,43 +1643,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:12 GMT + - Mon, 11 Jan 2021 09:54: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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-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: + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1640,43 +1696,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:13 GMT + - Mon, 11 Jan 2021 09:54: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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-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: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1691,43 +1749,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:15 GMT + - Mon, 11 Jan 2021 09:54: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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-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: + - '129' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1742,43 +1802,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:16 GMT + - Mon, 11 Jan 2021 09:54: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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-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: + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1793,35 +1855,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93a98601-37a8-4b2a-9a98-e807aaaa101e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 12 Nov 2020 01:56:17 GMT + - Mon, 11 Jan 2021 09:54: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: + - '127' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -1836,24 +1908,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 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;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231","name":"azurefileshare;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231","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: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1039' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:18 GMT + - Mon, 11 Jan 2021 09:54:25 GMT expires: - '-1' pragma: @@ -1868,15 +1940,15 @@ interactions: - 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: '{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -1886,48 +1958,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Ba1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' 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;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231/operationsStatus/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:56:19 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/azurefileshare;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231/operationResults/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1942,15 +2014,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1959,7 +2031,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:20 GMT + - Mon, 11 Jan 2021 09:54:27 GMT expires: - '-1' pragma: @@ -1974,6 +2046,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1993,15 +2067,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2010,7 +2084,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:21 GMT + - Mon, 11 Jan 2021 09:54:28 GMT expires: - '-1' pragma: @@ -2025,6 +2099,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -2044,15 +2120,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2061,7 +2137,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:23 GMT + - Mon, 11 Jan 2021 09:54:29 GMT expires: - '-1' pragma: @@ -2076,6 +2152,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -2095,15 +2173,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2112,7 +2190,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:24 GMT + - Mon, 11 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -2127,6 +2205,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -2146,15 +2226,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2163,7 +2243,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:25 GMT + - Mon, 11 Jan 2021 09:54:33 GMT expires: - '-1' pragma: @@ -2178,6 +2258,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -2197,15 +2279,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2214,7 +2296,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:27 GMT + - Mon, 11 Jan 2021 09:54:34 GMT expires: - '-1' pragma: @@ -2229,6 +2311,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -2248,15 +2332,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2265,7 +2349,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:28 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -2280,6 +2364,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -2299,15 +2385,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2316,7 +2402,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:29 GMT + - Mon, 11 Jan 2021 09:54:37 GMT expires: - '-1' pragma: @@ -2331,6 +2417,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -2350,15 +2438,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2367,7 +2455,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:31 GMT + - Mon, 11 Jan 2021 09:54:38 GMT expires: - '-1' pragma: @@ -2382,6 +2470,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -2401,15 +2491,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2418,7 +2508,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:32 GMT + - Mon, 11 Jan 2021 09:54:39 GMT expires: - '-1' pragma: @@ -2433,6 +2523,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -2452,15 +2544,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2469,7 +2561,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:33 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' pragma: @@ -2484,6 +2576,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -2503,15 +2597,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2520,7 +2614,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:35 GMT + - Mon, 11 Jan 2021 09:54:42 GMT expires: - '-1' pragma: @@ -2535,6 +2629,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -2554,15 +2650,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2571,7 +2667,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:36 GMT + - Mon, 11 Jan 2021 09:54:43 GMT expires: - '-1' pragma: @@ -2586,6 +2682,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -2605,15 +2703,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2622,7 +2720,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:37 GMT + - Mon, 11 Jan 2021 09:54:44 GMT expires: - '-1' pragma: @@ -2637,6 +2735,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2656,15 +2756,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2673,7 +2773,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:39 GMT + - Mon, 11 Jan 2021 09:54:46 GMT expires: - '-1' pragma: @@ -2688,6 +2788,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2707,15 +2809,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2724,7 +2826,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:40 GMT + - Mon, 11 Jan 2021 09:54:47 GMT expires: - '-1' pragma: @@ -2739,6 +2841,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2758,15 +2862,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2775,7 +2879,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:41 GMT + - Mon, 11 Jan 2021 09:54:49 GMT expires: - '-1' pragma: @@ -2790,6 +2894,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2809,15 +2915,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"InProgress","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2826,7 +2932,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:43 GMT + - Mon, 11 Jan 2021 09:54:50 GMT expires: - '-1' pragma: @@ -2841,6 +2947,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2860,24 +2968,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","name":"52fdb6e5-bf4f-4b53-9936-3cff4e3a4aa0","status":"Succeeded","startTime":"2021-01-11T09:54:18.5598452Z","endTime":"2021-01-11T09:54:18.5598452Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1218d80b-0e6d-4e03-8aa6-168a83bb9835"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:44 GMT + - Mon, 11 Jan 2021 09:54:51 GMT expires: - '-1' pragma: @@ -2892,6 +3000,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2911,30 +3021,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1218d80b-0e6d-4e03-8aa6-168a83bb9835?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1218d80b-0e6d-4e03-8aa6-168a83bb9835","name":"1218d80b-0e6d-4e03-8aa6-168a83bb9835","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.6331524S","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-01-11T09:54:18.5598452Z","endTime":"2021-01-11T09:54:51.1929976Z","activityId":"d4b61b81-53f2-11eb-b035-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:46 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -2943,6 +3056,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -2956,36 +3071,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - storage account show-connection-string Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -n -g User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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/clitest000007/listKeys?api-version=2019-06-01&$expand=kerb response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '188' + - '288' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:47 GMT + - Mon, 11 Jan 2021 09:55:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2994,11 +3108,47 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11995' status: code: 200 message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 + x-ms-date: + - Mon, 11 Jan 2021 09:55:13 GMT + x-ms-share-quota: + - '1' + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000007.file.core.windows.net/clitest-item000008?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 11 Jan 2021 09:55:14 GMT + etag: + - '"0x8D8B616FE22990E"' + last-modified: + - Mon, 11 Jan 2021 09:55:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created - request: body: null headers: @@ -3013,24 +3163,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:48 GMT + - Mon, 11 Jan 2021 09:55:14 GMT expires: - '-1' pragma: @@ -3045,6 +3195,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -3064,24 +3216,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '22315' content-type: - application/json date: - - Thu, 12 Nov 2020 01:56:50 GMT + - Mon, 11 Jan 2021 09:55:14 GMT expires: - '-1' pragma: @@ -3096,6 +3248,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3112,46 +3266,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + 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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:56:51 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3166,196 +3320,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:56: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 - response: - body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:56:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 - response: - body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:56: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 - response: - body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:56:56 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3370,43 +3367,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:56:58 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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: + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3421,43 +3414,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:56:59 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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: + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3472,43 +3461,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"InProgress","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:57:00 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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: + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3523,43 +3508,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","name":"e242d6f1-e044-4ed8-97ed-dbc5a9c1f5ba","status":"Succeeded","startTime":"2020-11-12T01:56:19.7674577Z","endTime":"2020-11-12T01:56:19.7674577Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"45f5d0be-a961-4d67-9926-9d6276e51b0a"}}' + string: '' headers: cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:57:02 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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: + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3574,185 +3555,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/45f5d0be-a961-4d67-9926-9d6276e51b0a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45f5d0be-a961-4d67-9926-9d6276e51b0a","name":"45f5d0be-a961-4d67-9926-9d6276e51b0a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.8929327S","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":"2020-11-12T01:56:19.7674577Z","endTime":"2020-11-12T01:57:02.6603904Z","activityId":"2ac8eb86-248a-11eb-a685-84a93e856e99"}}' + string: '' headers: cache-control: - no-cache content-length: - - '946' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:57: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: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account show-connection-string - Connection: - - keep-alive - Content-Length: - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.7.8 (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/clitest000007/listKeys?api-version=2019-06-01&$expand=kerb - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json date: - - Thu, 12 Nov 2020 01:57:25 GMT + - Mon, 11 Jan 2021 09:55: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/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-resource-requests: - - '11999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.8; Windows 10) AZURECLI/2.14.1 - x-ms-date: - - Thu, 12 Nov 2020 01:57:26 GMT - x-ms-share-quota: - - '1' - x-ms-version: - - '2018-11-09' - method: PUT - uri: https://clitest000007.file.core.windows.net/clitest-item000008?restype=share - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Thu, 12 Nov 2020 01:57:26 GMT - etag: - - '"0x8D886AE4E5ED3F7"' - last-modified: - - Thu, 12 Nov 2020 01:57:27 GMT - server: - - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2018-11-09' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '880' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:57: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 + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3767,89 +3602,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-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;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;yeming;yeming","name":"StorageContainer;Storage;yeming;yeming","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"yeming","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3574' - content-type: - - application/json - date: - - Thu, 12 Nov 2020 01:57: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-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 - Content-Length: - - '0' - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 12 Nov 2020 01:57:29 GMT + - Mon, 11 Jan 2021 09:55: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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -3869,12 +3649,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: string: '' @@ -3884,17 +3664,19 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 01:57:30 GMT + - Mon, 11 Jan 2021 09:55: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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -3914,37 +3696,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c417091c-fc01-4ab8-96f4-99cc62252a86?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache - content-length: - - '0' date: - - Thu, 12 Nov 2020 01:57:32 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -3959,39 +3739,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000007","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '23869' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:33 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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: + - '146' 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/clitest000007"}}' headers: Accept: - application/json @@ -4001,35 +3790,47 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-01 + 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%3Bclitest000007?api-version=2020-10-01 response: body: - string: '' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:34 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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-writes: + - '1191' x-powered-by: - ASP.NET status: @@ -4049,32 +3850,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 response: body: - string: '' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:36 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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: + - '118' x-powered-by: - ASP.NET status: @@ -4094,32 +3903,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 response: body: - string: '' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:37 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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: + - '117' x-powered-by: - ASP.NET status: @@ -4139,32 +3956,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 response: body: - string: '' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:38 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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: + - '116' x-powered-by: - ASP.NET status: @@ -4184,33 +4009,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/aaa5d8ee-595e-40d8-b9dc-d2d5d36b5950?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 response: body: - string: '' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:57:41 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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: + - '115' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -4225,46 +4062,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 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;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000007","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;yeming;yeming","name":"StorageContainer;Storage;yeming;yeming","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"yeming","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming"}}]}' + 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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '4351' + - '2' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:41 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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: + - '114' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}}' + body: null headers: Accept: - application/json @@ -4274,25 +4112,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest000007?api-version=2016-12-01 + 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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4300,11 +4134,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:42 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 pragma: - no-cache server: @@ -4313,8 +4147,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -4334,18 +4168,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4353,11 +4187,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:43 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 pragma: - no-cache server: @@ -4366,6 +4200,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -4385,18 +4221,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4404,11 +4240,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:44 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 pragma: - no-cache server: @@ -4417,6 +4253,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -4436,18 +4274,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4455,11 +4293,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:45 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 pragma: - no-cache server: @@ -4468,6 +4306,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -4487,43 +4327,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/df7277b4-6b9e-4f3f-9bb0-b022e358ba10?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":0,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' 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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:47 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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: + - '109' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4538,43 +4380,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{}' + 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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' 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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:48 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4589,43 +4433,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' 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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:49 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4637,41 +4483,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:57:52 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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-writes: + - '1194' x-powered-by: - ASP.NET status: @@ -4691,18 +4537,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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;clitest000007/operationsStatus/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?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;clitest000007/operationsStatus/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4710,11 +4556,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:53 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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;clitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-01 pragma: - no-cache server: @@ -4723,6 +4569,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -4742,43 +4590,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/4fac2f7e-63f9-4a87-8eaf-c9de1b5e00d7?api-version=2016-12-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%3Bclitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":0,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + 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;clitest000007/operationsStatus/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:54 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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: + - '93' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4793,43 +4643,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + 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%3Bclitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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":["2020-11-12T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-12T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + 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;clitest000007/operationsStatus/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:55 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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: + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4844,43 +4696,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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%3Bclitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-01 response: body: - string: '{"value":[]}' + 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;clitest000007/operationsStatus/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:55 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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: + - '91' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4892,46 +4746,40 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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%3Bclitest000007/operationResults/13b9d0c7-5f6e-4dcd-8ea1-82f4f3f2568a?api-version=2020-10-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;clitest000007/operationsStatus/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '0' + content-type: + - application/json; charset=utf-8 date: - - Thu, 12 Nov 2020 01:57:57 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -4946,45 +4794,49 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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;clitest000007/protectableItems/azurefileshare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","name":"azurefileshare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","parentContainerFriendlyName":"clitest000007","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000008","protectionState":"NotProtected"}}]}' 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;clitest000007/operationsStatus/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1039' content-type: - application/json date: - - Thu, 12 Nov 2020 01:57:57 GMT + - Mon, 11 Jan 2021 09:55:49 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;clitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -4994,41 +4846,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 + 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%3Bclitest000007/protectedItems/azurefileshare%3Bb041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0?api-version=2020-10-01 response: body: - string: '{}' + 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;clitest000007/operationsStatus/b0047f72-a046-4c77-bdc7-5b838fc7031e?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;clitest000007/protectedItems/azurefileshare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0/operationsStatus/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:57:58 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-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;clitest000007/protectedItems/azurefileshare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0/operationResults/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-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-writes: + - '1194' x-powered-by: - ASP.NET status: @@ -5048,43 +4902,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' 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;clitest000007/operationsStatus/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:00 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-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: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5099,43 +4955,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' 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;clitest000007/operationsStatus/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:01 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5150,35 +5008,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/b0047f72-a046-4c77-bdc7-5b838fc7031e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Thu, 12 Nov 2020 01:58:02 GMT + - Mon, 11 Jan 2021 09:55: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: + - '145' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -5193,24 +5061,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 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;clitest000007/protectableItems/azurefileshare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","name":"azurefileshare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","parentContainerFriendlyName":"clitest000007","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000008","protectionState":"NotProtected"}}]}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1039' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:03 GMT + - Mon, 11 Jan 2021 09:55:54 GMT expires: - '-1' pragma: @@ -5225,15 +5093,15 @@ interactions: - 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: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -5243,48 +5111,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest000007/protectedItems/azurefileshare%3Ba38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' 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;clitest000007/protectedItems/azurefileshare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795/operationsStatus/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:58:05 GMT + - Mon, 11 Jan 2021 09:55: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;clitest000007/protectedItems/azurefileshare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795/operationResults/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5299,15 +5167,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5316,7 +5184,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:05 GMT + - Mon, 11 Jan 2021 09:55:57 GMT expires: - '-1' pragma: @@ -5331,6 +5199,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -5350,15 +5220,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5367,7 +5237,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:06 GMT + - Mon, 11 Jan 2021 09:55:58 GMT expires: - '-1' pragma: @@ -5382,6 +5252,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -5401,15 +5273,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5418,7 +5290,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:08 GMT + - Mon, 11 Jan 2021 09:55:59 GMT expires: - '-1' pragma: @@ -5433,6 +5305,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -5452,15 +5326,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5469,7 +5343,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:09 GMT + - Mon, 11 Jan 2021 09:56:01 GMT expires: - '-1' pragma: @@ -5484,6 +5358,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -5503,15 +5379,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5520,7 +5396,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:10 GMT + - Mon, 11 Jan 2021 09:56:02 GMT expires: - '-1' pragma: @@ -5535,6 +5411,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -5554,15 +5432,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5571,7 +5449,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:12 GMT + - Mon, 11 Jan 2021 09:56:03 GMT expires: - '-1' pragma: @@ -5586,6 +5464,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -5605,15 +5485,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5622,7 +5502,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:13 GMT + - Mon, 11 Jan 2021 09:56:05 GMT expires: - '-1' pragma: @@ -5637,6 +5517,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -5656,15 +5538,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5673,7 +5555,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:14 GMT + - Mon, 11 Jan 2021 09:56:07 GMT expires: - '-1' pragma: @@ -5688,6 +5570,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -5707,15 +5591,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5724,7 +5608,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:16 GMT + - Mon, 11 Jan 2021 09:56:08 GMT expires: - '-1' pragma: @@ -5739,6 +5623,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -5758,15 +5644,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5775,7 +5661,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:17 GMT + - Mon, 11 Jan 2021 09:56:09 GMT expires: - '-1' pragma: @@ -5790,6 +5676,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -5809,15 +5697,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5826,7 +5714,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:18 GMT + - Mon, 11 Jan 2021 09:56:10 GMT expires: - '-1' pragma: @@ -5841,6 +5729,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -5860,15 +5750,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5877,7 +5767,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:20 GMT + - Mon, 11 Jan 2021 09:56:11 GMT expires: - '-1' pragma: @@ -5892,6 +5782,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -5911,15 +5803,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5928,7 +5820,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:21 GMT + - Mon, 11 Jan 2021 09:56:12 GMT expires: - '-1' pragma: @@ -5943,6 +5835,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -5962,15 +5856,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5979,7 +5873,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:22 GMT + - Mon, 11 Jan 2021 09:56:13 GMT expires: - '-1' pragma: @@ -5994,6 +5888,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -6013,15 +5909,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6030,7 +5926,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:24 GMT + - Mon, 11 Jan 2021 09:56:16 GMT expires: - '-1' pragma: @@ -6045,6 +5941,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -6064,15 +5962,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6081,7 +5979,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:25 GMT + - Mon, 11 Jan 2021 09:56:17 GMT expires: - '-1' pragma: @@ -6096,6 +5994,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -6115,15 +6015,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6132,7 +6032,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:27 GMT + - Mon, 11 Jan 2021 09:56:18 GMT expires: - '-1' pragma: @@ -6147,6 +6047,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -6166,15 +6068,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6183,7 +6085,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:28 GMT + - Mon, 11 Jan 2021 09:56:19 GMT expires: - '-1' pragma: @@ -6198,6 +6100,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -6217,15 +6121,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6234,7 +6138,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:29 GMT + - Mon, 11 Jan 2021 09:56:20 GMT expires: - '-1' pragma: @@ -6249,6 +6153,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -6268,15 +6174,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6285,7 +6191,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:31 GMT + - Mon, 11 Jan 2021 09:56:22 GMT expires: - '-1' pragma: @@ -6300,6 +6206,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -6319,15 +6227,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6336,7 +6244,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:32 GMT + - Mon, 11 Jan 2021 09:56:23 GMT expires: - '-1' pragma: @@ -6351,6 +6259,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -6370,15 +6280,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6387,7 +6297,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:33 GMT + - Mon, 11 Jan 2021 09:56:25 GMT expires: - '-1' pragma: @@ -6402,6 +6312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -6421,15 +6333,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6438,7 +6350,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:35 GMT + - Mon, 11 Jan 2021 09:56:26 GMT expires: - '-1' pragma: @@ -6453,6 +6365,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -6472,15 +6386,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6489,7 +6403,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:36 GMT + - Mon, 11 Jan 2021 09:56:27 GMT expires: - '-1' pragma: @@ -6504,6 +6418,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -6523,15 +6439,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6540,7 +6456,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:37 GMT + - Mon, 11 Jan 2021 09:56:28 GMT expires: - '-1' pragma: @@ -6555,6 +6471,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -6574,15 +6492,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6591,7 +6509,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:39 GMT + - Mon, 11 Jan 2021 09:56:30 GMT expires: - '-1' pragma: @@ -6606,6 +6524,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -6625,15 +6545,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"InProgress","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6642,7 +6562,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:40 GMT + - Mon, 11 Jan 2021 09:56:31 GMT expires: - '-1' pragma: @@ -6657,6 +6577,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -6676,24 +6598,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/70b9f90a-2eb0-40f8-bee8-597b2f4f0797?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","name":"70b9f90a-2eb0-40f8-bee8-597b2f4f0797","status":"Succeeded","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"2021-01-11T09:55:50.6474344Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a9b20c48-9b06-40eb-ae44-e26167319104"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:41 GMT + - Mon, 11 Jan 2021 09:56:32 GMT expires: - '-1' pragma: @@ -6708,6 +6630,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -6727,30 +6651,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9b20c48-9b06-40eb-ae44-e26167319104?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9b20c48-9b06-40eb-ae44-e26167319104","name":"a9b20c48-9b06-40eb-ae44-e26167319104","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.8477308S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000008","Storage Account Name":"clitest000007","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-11T09:55:50.6474344Z","endTime":"2021-01-11T09:56:32.4951652Z","activityId":"19fb8010-53f3-11eb-ab0d-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:43 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -6759,6 +6686,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6772,30 +6701,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -n -v -g --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000007%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + 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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:44 GMT + - Mon, 11 Jan 2021 09:56:34 GMT expires: - '-1' pragma: @@ -6810,6 +6739,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6823,30 +6754,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -n -v -g User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-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%3Bclitest000007?api-version=2020-10-01 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"InProgress","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '868' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:45 GMT + - Mon, 11 Jan 2021 09:56:34 GMT expires: - '-1' pragma: @@ -6861,6 +6792,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6874,30 +6807,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -v -g --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c69c8b8d-d7a6-4163-9d2a-1b140b301371?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","name":"c69c8b8d-d7a6-4163-9d2a-1b140b301371","status":"Succeeded","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"2020-11-12T01:58:04.9558251Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"15160e36-f5cf-49bf-a11f-123f0a2d6a61"}}' + 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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}},{"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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1749' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:47 GMT + - Mon, 11 Jan 2021 09:56:34 GMT expires: - '-1' pragma: @@ -6912,6 +6845,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6925,39 +6860,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/15160e36-f5cf-49bf-a11f-123f0a2d6a61?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/15160e36-f5cf-49bf-a11f-123f0a2d6a61","name":"15160e36-f5cf-49bf-a11f-123f0a2d6a61","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.6867127S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000008","Storage Account Name":"clitest000007","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2020-11-12T01:58:04.9558251Z","endTime":"2020-11-12T01:58:47.6425378Z","activityId":"6a306334-248a-11eb-af03-84a93e856e99"}}' + 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;clitest000007/protectedItems/AzureFileShare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","name":"AzureFileShare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005"}},{"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;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7","name":"AzureFileShare;ac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7","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"}}]}' headers: cache-control: - no-cache content-length: - - '946' + - '2643' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:48 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -6967,7 +6899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '144' x-powered-by: - ASP.NET status: @@ -6981,49 +6913,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -v -g --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000007%27%20and%20status%20eq%20%27Registered%27 + 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%3Bac5de7c79fe671583f436ba4dfa24849f14959486cce51f28d24e2d113d031f7?api-version=2020-10-01 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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 cache-control: - no-cache content-length: - - '880' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:58:49 GMT + - Mon, 11 Jan 2021 09:56:36 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-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-deletes: + - '14996' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7032,30 +6964,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -n -v -g + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '868' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:51 GMT + - Mon, 11 Jan 2021 09:56:37 GMT expires: - '-1' pragma: @@ -7070,6 +7002,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -7083,30 +7017,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 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;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}},{"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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1749' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:52 GMT + - Mon, 11 Jan 2021 09:56:38 GMT expires: - '-1' pragma: @@ -7121,6 +7055,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -7140,24 +7076,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 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;clitest000007/protectedItems/AzureFileShare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","name":"AzureFileShare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005"}},{"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;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231","name":"AzureFileShare;a1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231","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"}}]}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2643' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:53 GMT + - Mon, 11 Jan 2021 09:56:39 GMT expires: - '-1' pragma: @@ -7172,6 +7108,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -7188,46 +7126,48 @@ 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.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Ba1a9b92b46f707d9154f4c74d7d1f6981da581b07b1bc3e63cbe1c6f30cd8231?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:58:54 GMT + - Mon, 11 Jan 2021 09:56:40 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7242,15 +7182,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7259,7 +7199,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:54 GMT + - Mon, 11 Jan 2021 09:56:42 GMT expires: - '-1' pragma: @@ -7274,6 +7214,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -7293,15 +7235,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7310,7 +7252,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:55 GMT + - Mon, 11 Jan 2021 09:56:44 GMT expires: - '-1' pragma: @@ -7325,6 +7267,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -7344,15 +7288,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7361,7 +7305,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:57 GMT + - Mon, 11 Jan 2021 09:56:45 GMT expires: - '-1' pragma: @@ -7376,6 +7320,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -7395,15 +7341,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7412,7 +7358,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:58:58 GMT + - Mon, 11 Jan 2021 09:56:46 GMT expires: - '-1' pragma: @@ -7427,6 +7373,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -7446,15 +7394,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7463,7 +7411,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:00 GMT + - Mon, 11 Jan 2021 09:56:47 GMT expires: - '-1' pragma: @@ -7478,6 +7426,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -7497,15 +7447,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7514,7 +7464,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:01 GMT + - Mon, 11 Jan 2021 09:56:49 GMT expires: - '-1' pragma: @@ -7529,6 +7479,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -7548,15 +7500,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7565,7 +7517,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:02 GMT + - Mon, 11 Jan 2021 09:56:50 GMT expires: - '-1' pragma: @@ -7580,6 +7532,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -7599,15 +7553,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7616,7 +7570,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:04 GMT + - Mon, 11 Jan 2021 09:56:51 GMT expires: - '-1' pragma: @@ -7631,6 +7585,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -7650,15 +7606,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7667,7 +7623,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:05 GMT + - Mon, 11 Jan 2021 09:56:52 GMT expires: - '-1' pragma: @@ -7682,6 +7638,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -7701,15 +7659,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7718,7 +7676,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:06 GMT + - Mon, 11 Jan 2021 09:56:53 GMT expires: - '-1' pragma: @@ -7733,6 +7691,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -7752,15 +7712,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7769,7 +7729,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:08 GMT + - Mon, 11 Jan 2021 09:56:55 GMT expires: - '-1' pragma: @@ -7784,6 +7744,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -7803,15 +7765,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"InProgress","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7820,7 +7782,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:09 GMT + - Mon, 11 Jan 2021 09:56:57 GMT expires: - '-1' pragma: @@ -7835,6 +7797,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -7854,24 +7818,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a9afdaaf-0b87-4be6-8984-f6eaf07f688a?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","name":"a9afdaaf-0b87-4be6-8984-f6eaf07f688a","status":"Succeeded","startTime":"2021-01-11T09:56:37.0577248Z","endTime":"2021-01-11T09:56:37.0577248Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c946676c-c54c-468d-bf3b-8a3eda59e3cf"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:11 GMT + - Mon, 11 Jan 2021 09:56:58 GMT expires: - '-1' pragma: @@ -7886,6 +7850,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -7905,30 +7871,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c946676c-c54c-468d-bf3b-8a3eda59e3cf?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c946676c-c54c-468d-bf3b-8a3eda59e3cf","name":"c946676c-c54c-468d-bf3b-8a3eda59e3cf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2618254S","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-01-11T09:56:37.0577248Z","endTime":"2021-01-11T09:56:58.3195502Z","activityId":"4a8f27f0-53f3-11eb-97f7-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:12 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7937,6 +7905,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -7956,24 +7926,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"InProgress","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"0001-01-01T00:00:00"}' + 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;clitest000007/protectedItems/AzureFileShare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","name":"AzureFileShare;b041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:13 GMT + - Mon, 11 Jan 2021 09:56:59 GMT expires: - '-1' pragma: @@ -7988,6 +7958,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -8004,46 +7976,46 @@ 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.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c7cb478c-04a2-4e50-9917-d762b8e95d79?api-version=2016-12-01 + 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%3Bclitest000007/protectedItems/AzureFileShare%3Bb041f05e42f666ec35c6833b74483b1a453dc69adac2c160b822c2f412ca6ad0?api-version=2020-10-01 response: body: - string: '{"id":"c7cb478c-04a2-4e50-9917-d762b8e95d79","name":"c7cb478c-04a2-4e50-9917-d762b8e95d79","status":"Succeeded","startTime":"2020-11-12T01:58:54.2678608Z","endTime":"2020-11-12T01:58:54.2678608Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1bc54e4e-ec08-459c-9713-0f2d133f53c8"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:59:15 GMT + - Mon, 11 Jan 2021 09:57:00 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-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-deletes: + - '14995' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8058,32 +8030,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1bc54e4e-ec08-459c-9713-0f2d133f53c8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1bc54e4e-ec08-459c-9713-0f2d133f53c8","name":"1bc54e4e-ec08-459c-9713-0f2d133f53c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.5398824S","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":"2020-11-12T01:58:54.2678608Z","endTime":"2020-11-12T01:59:15.8077432Z","activityId":"9d13254a-248a-11eb-96a7-84a93e856e99"}}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '906' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:16 GMT + - Mon, 11 Jan 2021 09:57: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: @@ -8093,7 +8063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '100' x-powered-by: - ASP.NET status: @@ -8113,24 +8083,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 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;clitest000007/protectedItems/AzureFileShare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","name":"AzureFileShare;a38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005"}}]}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1327' + - '188' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:17 GMT + - Mon, 11 Jan 2021 09:57:01 GMT expires: - '-1' pragma: @@ -8145,6 +8115,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -8161,46 +8133,48 @@ 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.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest000007/protectedItems/AzureFileShare%3Ba38df3a96fa101a4bf90adaeb10e7884ef172308b2ce55e1ca06629a8f017795?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:59:18 GMT + - Mon, 11 Jan 2021 09:57:03 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8215,15 +8189,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8232,7 +8206,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:19 GMT + - Mon, 11 Jan 2021 09:57:05 GMT expires: - '-1' pragma: @@ -8247,6 +8221,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -8266,15 +8242,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8283,7 +8259,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:20 GMT + - Mon, 11 Jan 2021 09:57:06 GMT expires: - '-1' pragma: @@ -8298,6 +8274,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -8317,15 +8295,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8334,7 +8312,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:22 GMT + - Mon, 11 Jan 2021 09:57:07 GMT expires: - '-1' pragma: @@ -8349,6 +8327,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -8368,15 +8348,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8385,7 +8365,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:23 GMT + - Mon, 11 Jan 2021 09:57:08 GMT expires: - '-1' pragma: @@ -8400,6 +8380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -8419,15 +8401,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8436,7 +8418,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:25 GMT + - Mon, 11 Jan 2021 09:57:09 GMT expires: - '-1' pragma: @@ -8451,6 +8433,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -8470,15 +8454,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8487,7 +8471,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:26 GMT + - Mon, 11 Jan 2021 09:57:11 GMT expires: - '-1' pragma: @@ -8502,6 +8486,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -8521,15 +8507,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8538,7 +8524,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:27 GMT + - Mon, 11 Jan 2021 09:57:12 GMT expires: - '-1' pragma: @@ -8553,6 +8539,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -8572,15 +8560,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8589,7 +8577,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:29 GMT + - Mon, 11 Jan 2021 09:57:14 GMT expires: - '-1' pragma: @@ -8604,6 +8592,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -8623,15 +8613,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8640,7 +8630,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:30 GMT + - Mon, 11 Jan 2021 09:57:15 GMT expires: - '-1' pragma: @@ -8655,6 +8645,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -8674,15 +8666,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8691,7 +8683,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:31 GMT + - Mon, 11 Jan 2021 09:57:16 GMT expires: - '-1' pragma: @@ -8706,6 +8698,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -8725,15 +8719,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8742,7 +8736,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:33 GMT + - Mon, 11 Jan 2021 09:57:17 GMT expires: - '-1' pragma: @@ -8757,6 +8751,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -8776,15 +8772,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8793,7 +8789,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:34 GMT + - Mon, 11 Jan 2021 09:57:18 GMT expires: - '-1' pragma: @@ -8808,6 +8804,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -8827,15 +8825,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"InProgress","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8844,7 +8842,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:35 GMT + - Mon, 11 Jan 2021 09:57:20 GMT expires: - '-1' pragma: @@ -8859,6 +8857,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -8878,24 +8878,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/55fcc5f0-0f1b-4f69-b707-43d16b9e722b?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","name":"55fcc5f0-0f1b-4f69-b707-43d16b9e722b","status":"Succeeded","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"2021-01-11T09:57:00.4537803Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a27c7e3e-d2d9-4240-91c8-ae118ab96fdb"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:37 GMT + - Mon, 11 Jan 2021 09:57:21 GMT expires: - '-1' pragma: @@ -8910,6 +8910,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -8929,30 +8931,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a27c7e3e-d2d9-4240-91c8-ae118ab96fdb?api-version=2020-10-01 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"InProgress","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a27c7e3e-d2d9-4240-91c8-ae118ab96fdb","name":"a27c7e3e-d2d9-4240-91c8-ae118ab96fdb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4155972S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000008","Storage Account Name":"clitest000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-11T09:57:00.4537803Z","endTime":"2021-01-11T09:57:21.8693775Z","activityId":"5876b74d-53f3-11eb-9688-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:38 GMT + - Mon, 11 Jan 2021 09: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: @@ -8961,6 +8965,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -8974,30 +8980,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/2fcb8b6b-07e8-4c44-abda-e64a3167c97b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","name":"2fcb8b6b-07e8-4c44-abda-e64a3167c97b","status":"Succeeded","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"2020-11-12T01:59:19.0216024Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"02288797-e2f6-4a72-be6b-d95b115acd32"}}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '880' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:40 GMT + - Mon, 11 Jan 2021 09:57:22 GMT expires: - '-1' pragma: @@ -9012,6 +9018,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -9025,53 +9033,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02288797-e2f6-4a72-be6b-d95b115acd32?api-version=2019-06-15 + 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?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/02288797-e2f6-4a72-be6b-d95b115acd32","name":"02288797-e2f6-4a72-be6b-d95b115acd32","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4831522S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000008","Storage Account Name":"clitest000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2020-11-12T01:59:19.0216024Z","endTime":"2020-11-12T01:59:40.5047546Z","activityId":"ab92d0ac-248a-11eb-8a3b-84a93e856e99"}}' + 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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '906' - content-type: - - application/json + - '0' date: - - Thu, 12 Nov 2020 01:59:40 GMT + - Mon, 11 Jan 2021 09:57:23 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/fe5652d3-f0a0-452c-8279-828fccf88519?fabricName=Azure?api-version=2020-10-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' + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -9086,43 +9090,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + 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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + 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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:42 GMT + - Mon, 11 Jan 2021 09:57: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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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: + - '108' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -9134,41 +9140,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + 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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 response: body: - string: '' + 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Thu, 12 Nov 2020 01:59:43 GMT + - Mon, 11 Jan 2021 09:57:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/06d92ba5-8d9f-4165-a3cc-fc0e01246825?fabricName=Azure?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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: + - '107' x-powered-by: - ASP.NET status: @@ -9188,18 +9196,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9207,11 +9215,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:43 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9220,6 +9228,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -9239,18 +9249,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9258,11 +9268,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:45 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9271,6 +9281,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -9290,18 +9302,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9309,11 +9321,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:46 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9322,6 +9334,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -9341,18 +9355,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9360,11 +9374,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:47 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9373,6 +9387,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -9392,18 +9408,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9411,11 +9427,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:49 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9424,6 +9440,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -9443,18 +9461,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9462,11 +9480,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:50 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9475,6 +9493,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -9494,18 +9514,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9513,11 +9533,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:52 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9526,6 +9546,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -9545,18 +9567,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9564,11 +9586,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:53 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9577,6 +9599,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -9596,18 +9620,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9615,11 +9639,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:54 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9628,6 +9652,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -9647,18 +9673,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9666,11 +9692,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:56 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9679,6 +9705,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -9698,18 +9726,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9717,11 +9745,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:57 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9730,6 +9758,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -9749,18 +9779,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9768,11 +9798,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 01:59:58 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9781,6 +9811,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -9800,18 +9832,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9819,11 +9851,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:00 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9832,6 +9864,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -9851,18 +9885,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9870,11 +9904,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:01 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9883,6 +9917,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -9902,18 +9938,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9921,11 +9957,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:03 GMT + - Mon, 11 Jan 2021 09:57: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/operationResults/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9934,6 +9970,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -9953,18 +9991,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9972,11 +10010,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:04 GMT + - Mon, 11 Jan 2021 09:57: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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 pragma: - no-cache server: @@ -9985,6 +10023,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -10004,12 +10044,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/06d92ba5-8d9f-4165-a3cc-fc0e01246825?api-version=2016-12-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/fe5652d3-f0a0-452c-8279-828fccf88519?api-version=2020-10-01 response: body: string: '' @@ -10019,7 +10059,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Nov 2020 02:00:05 GMT + - Mon, 11 Jan 2021 09:57:48 GMT expires: - '-1' pragma: @@ -10028,6 +10068,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -10047,12 +10089,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000007%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000007%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/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":0,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' @@ -10064,7 +10106,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:07 GMT + - Mon, 11 Jan 2021 09:57:47 GMT expires: - '-1' pragma: @@ -10079,6 +10121,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -10100,28 +10144,28 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest000007?api-version=2016-12-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%3Bclitest000007?api-version=2020-10-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/83e9d23f-8524-4862-ab43-18690fa54ef0?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/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 12 Nov 2020 02:00:07 GMT + - Mon, 11 Jan 2021 09:57:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?fabricName=Azure?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -10129,7 +10173,60 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:57:49 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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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: + - '89' x-powered-by: - ASP.NET status: @@ -10149,18 +10246,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10168,11 +10265,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:09 GMT + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10181,6 +10278,61 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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: + - '87' x-powered-by: - ASP.NET status: @@ -10200,18 +10352,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10219,11 +10371,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:11 GMT + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10232,6 +10384,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -10251,18 +10405,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10270,11 +10424,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:12 GMT + - Mon, 11 Jan 2021 09:57: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10283,6 +10437,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -10302,18 +10458,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10321,11 +10477,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:13 GMT + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10334,6 +10490,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -10353,18 +10511,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10372,11 +10530,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:15 GMT + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10385,6 +10543,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -10404,18 +10564,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10423,11 +10583,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:16 GMT + - Mon, 11 Jan 2021 09:57: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10436,6 +10596,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -10455,18 +10617,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10474,11 +10636,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:18 GMT + - Mon, 11 Jan 2021 09:58: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10487,6 +10649,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -10506,18 +10670,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10525,11 +10689,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:19 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10538,6 +10702,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -10557,18 +10723,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10576,11 +10742,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:21 GMT + - Mon, 11 Jan 2021 09:58: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10589,6 +10755,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -10608,18 +10776,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10627,11 +10795,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:22 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10640,6 +10808,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -10659,18 +10829,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10678,11 +10848,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:23 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10691,6 +10861,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -10710,18 +10882,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10729,11 +10901,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:25 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10742,6 +10914,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -10761,18 +10935,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10780,11 +10954,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:26 GMT + - Mon, 11 Jan 2021 09:58:08 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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10793,6 +10967,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -10812,18 +10988,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10831,11 +11007,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:28 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10844,6 +11020,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -10863,18 +11041,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-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;clitest000007/operationsStatus/83e9d23f-8524-4862-ab43-18690fa54ef0?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;clitest000007/operationsStatus/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10882,11 +11060,11 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:29 GMT + - Mon, 11 Jan 2021 09:58: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;clitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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;clitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 pragma: - no-cache server: @@ -10895,6 +11073,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -10914,12 +11094,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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%3Bclitest000007/operationResults/83e9d23f-8524-4862-ab43-18690fa54ef0?api-version=2016-12-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%3Bclitest000007/operationResults/5c527d75-f3d2-4ec0-8c56-c55b341525f4?api-version=2020-10-01 response: body: string: '' @@ -10929,7 +11109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Nov 2020 02:00:31 GMT + - Mon, 11 Jan 2021 09:58:12 GMT expires: - '-1' pragma: @@ -10938,6 +11118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -10957,12 +11139,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -10974,7 +11156,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Nov 2020 02:00:31 GMT + - Mon, 11 Jan 2021 09:59:53 GMT expires: - '-1' pragma: @@ -10989,6 +11171,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -11010,8 +11194,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.8 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -11025,7 +11209,7 @@ interactions: content-length: - '0' date: - - Thu, 12 Nov 2020 02:00:34 GMT + - Mon, 11 Jan 2021 09:59:56 GMT expires: - '-1' pragma: @@ -11035,7 +11219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '8' status: code: 200 message: OK 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 2bfe8eab51a..3c4b5ef156e 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T08%3A05%3A11.8658018Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-16T15%3A29%3A28.6382408Z''\"","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: - - '400' + - '484' content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:11 GMT + - Sat, 16 Jan 2021 15:29:29 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '209' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:33 GMT + - Sat, 16 Jan 2021 15:29:52 GMT expires: - '-1' pragma: @@ -98,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' status: code: 200 message: OK @@ -111,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.18.0 x-ms-date: - - Wed, 27 Nov 2019 08:05:33 GMT + - Sat, 16 Jan 2021 15:29:52 GMT x-ms-share-quota: - '1' x-ms-version: @@ -127,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:34 GMT + - Sat, 16 Jan 2021 15:29:52 GMT etag: - - '"0x8D773109469FC21"' + - '"0x8D8BA339209F383"' last-modified: - - Wed, 27 Nov 2019 08:05:34 GMT + - Sat, 16 Jan 2021 15:29:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -155,10 +152,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -172,7 +166,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:34 GMT + - Sat, 16 Jan 2021 15:29:53 GMT expires: - '-1' pragma: @@ -187,8 +181,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' status: code: 200 message: OK @@ -200,9 +194,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.18.0 x-ms-date: - - Wed, 27 Nov 2019 08:05:34 GMT + - Sat, 16 Jan 2021 15:29:53 GMT x-ms-share-quota: - '1' x-ms-version: @@ -216,11 +210,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:34 GMT + - Sat, 16 Jan 2021 15:29:52 GMT etag: - - '"0x8D7731094F9887B"' + - '"0x8D8BA33928E778E"' last-modified: - - Wed, 27 Nov 2019 08:05:35 GMT + - Sat, 16 Jan 2021 15:29:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -242,15 +236,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -259,7 +253,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:35 GMT + - Sat, 16 Jan 2021 15:29:53 GMT expires: - '-1' pragma: @@ -274,6 +268,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -282,9 +278,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-17T01:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-17T01:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -300,17 +296,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-item000006?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -319,7 +315,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:36 GMT + - Sat, 16 Jan 2021 15:29:54 GMT expires: - '-1' pragma: @@ -335,7 +331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -355,15 +351,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -372,7 +368,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:37 GMT + - Sat, 16 Jan 2021 15:29:56 GMT expires: - '-1' pragma: @@ -387,6 +383,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -395,9 +393,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-17T01:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-17T01:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -413,17 +411,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-item000007?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -432,7 +430,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:37 GMT + - Sat, 16 Jan 2021 15:29:57 GMT expires: - '-1' pragma: @@ -448,7 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -465,46 +463,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + string: '{"value":[]}' 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:05:39 GMT + - Sat, 16 Jan 2021 15:29: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-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: @@ -519,37 +519,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ContainerAutoProtection;containerautoprotecti215","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti215","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti215","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti667","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;gesahoo;gesahoodiag","name":"StorageContainer;Storage;gesahoo;gesahoodiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoodiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoodiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","name":"StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008groupdisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks"}},{"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: cache-control: - no-cache content-length: - - '0' + - '4519' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:05:40 GMT + - Sat, 16 Jan 2021 15:29: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -561,35 +569,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:41 GMT + - Sat, 16 Jan 2021 15:29: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -609,12 +623,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -624,17 +638,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:42 GMT + - Sat, 16 Jan 2021 15:30: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -654,12 +670,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -669,17 +685,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:43 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -699,12 +717,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -714,17 +732,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:44 GMT + - Sat, 16 Jan 2021 15:30: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -744,12 +764,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -759,17 +779,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:46 GMT + - Sat, 16 Jan 2021 15:30: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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -789,12 +811,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -804,17 +826,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:47 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -834,12 +858,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -849,17 +873,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:48 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -879,12 +905,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -894,17 +920,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:49 GMT + - Sat, 16 Jan 2021 15:30:08 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -924,12 +952,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' @@ -939,17 +967,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:50 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: @@ -969,33 +999,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/52c539ba-69b3-40ce-a1ff-a843438c9f60?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 08:05:51 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-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: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -1010,43 +1046,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/cb5bc359-eee6-4959-886e-04706d95c01c?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache - content-length: - - '12' - content-type: - - application/json date: - - Wed, 27 Nov 2019 08:05:51 GMT + - Sat, 16 Jan 2021 15:30: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: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -1061,24 +1089,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitesto5626juekg43ao4jd","name":"StorageContainer;Storage;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitesto5626juekg43ao4jd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesto5626juekg43ao4jd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Storage/storageAccounts/clitesto5626juekg43ao4jd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest5wjkm42yso3qdqpad","name":"StorageContainer;Storage;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest5wjkm42yso3qdqpad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest5wjkm42yso3qdqpad","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Storage/storageAccounts/clitest5wjkm42yso3qdqpad"}},{"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.rgzwn7gyc74j;clitestnmzyyb2dsccwixuvu","name":"StorageContainer;Storage;clitest.rgzwn7gyc74j;clitestnmzyyb2dsccwixuvu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestnmzyyb2dsccwixuvu","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzwn7gyc74j/providers/Microsoft.Storage/storageAccounts/clitestnmzyyb2dsccwixuvu"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti215","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti215","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti215","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti667","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;gesahoo;gesahoodiag","name":"StorageContainer;Storage;gesahoo;gesahoodiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoodiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoodiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","name":"StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008groupdisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks"}},{"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: cache-control: - no-cache content-length: - - '5834' + - '7957' content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:53 GMT + - Sat, 16 Jan 2021 15:30:12 GMT expires: - '-1' pragma: @@ -1093,14 +1121,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -1117,18 +1147,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-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?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1136,11 +1166,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:53 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1170,18 +1200,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1189,11 +1219,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:54 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1202,6 +1232,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1221,18 +1253,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1240,11 +1272,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:56 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1253,6 +1285,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1272,18 +1306,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1291,11 +1325,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:57 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1304,6 +1338,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1323,18 +1359,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1342,11 +1378,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:58 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1355,6 +1391,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1374,18 +1412,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1393,11 +1431,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:59 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1406,6 +1444,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1425,18 +1465,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1444,11 +1484,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:01 GMT + - Sat, 16 Jan 2021 15:30: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1457,6 +1497,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1476,18 +1518,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1495,11 +1537,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:02 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1508,6 +1550,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1527,18 +1571,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1546,11 +1590,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:03 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1559,6 +1603,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1578,18 +1624,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1597,11 +1643,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:04 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1610,6 +1656,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1629,18 +1677,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1648,11 +1696,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:05 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 pragma: - no-cache server: @@ -1661,6 +1709,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -1680,43 +1730,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/00237585-7170-44d7-8495-812f33a8c70f?api-version=2020-10-01 response: body: - string: '{}' + 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"}}' 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:06 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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: + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1731,43 +1783,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:08 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1782,43 +1836,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:09 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1830,41 +1886,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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/459a41b3-d9f6-42ee-b270-391b77978d8a?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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:06:10 GMT + - Sat, 16 Jan 2021 15:30: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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1884,43 +1940,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/459a41b3-d9f6-42ee-b270-391b77978d8a?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '868' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:11 GMT + - Sat, 16 Jan 2021 15:30: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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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: + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1935,43 +1993,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000006?api-version=2019-06-15 + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:11 GMT + - Sat, 16 Jan 2021 15:30: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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1986,43 +2046,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-01 response: body: - string: '{"value":[]}' + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:12 GMT + - Sat, 16 Jan 2021 15:30: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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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: + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2034,41 +2096,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-01 response: body: - string: '' + 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:06:13 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -2088,18 +2152,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2107,11 +2171,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:13 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-01 pragma: - no-cache server: @@ -2120,6 +2184,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -2139,43 +2205,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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/a747db73-d8d8-4cff-a155-2035c0a0d1d7?api-version=2020-10-01 response: body: - string: '{}' + 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:06:14 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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 + code: 204 + message: No Content - request: body: null headers: @@ -2190,45 +2250,49 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"azurefileshare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"azurefileshare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","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-item000005","protectionState":"NotProtected"}}]}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '2067' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:15 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"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-item000006", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -2238,41 +2302,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + 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%3Bb2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5?api-version=2020-10-01 response: body: - string: '{}' + 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?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/protectedItems/azurefileshare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5/operationsStatus/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:06:16 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5/operationResults/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-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-writes: + - '1197' x-powered-by: - ASP.NET status: @@ -2292,43 +2358,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:18 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '74' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2343,43 +2411,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:19 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '73' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2394,43 +2464,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:20 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '72' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2445,43 +2517,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:21 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '71' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2496,43 +2570,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:22 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '70' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2547,43 +2623,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:24 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '69' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2598,43 +2676,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:25 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '68' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2649,43 +2729,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:26 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '67' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2700,43 +2782,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:27 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '66' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2751,43 +2835,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:28 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '65' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2802,43 +2888,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:30 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '64' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2853,43 +2941,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:31 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '63' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2904,43 +2994,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:32 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '62' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2955,43 +3047,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:33 GMT + - Sat, 16 Jan 2021 15:30: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '61' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3006,43 +3100,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:34 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '60' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3057,43 +3153,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:35 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '59' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3108,43 +3206,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:37 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '58' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3159,43 +3259,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:38 GMT + - Sat, 16 Jan 2021 15:30: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + 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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3210,43 +3312,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:40 GMT + - Sat, 16 Jan 2021 15:31: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '56' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3261,43 +3365,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:41 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '55' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3312,43 +3418,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:42 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '54' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3363,43 +3471,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:44 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '53' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3414,43 +3524,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:45 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '52' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3465,43 +3577,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:46 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '51' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3516,43 +3630,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:47 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '50' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3567,43 +3683,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:49 GMT + - Sat, 16 Jan 2021 15:31:08 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '49' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3618,43 +3736,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:50 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '48' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3669,43 +3789,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:51 GMT + - Sat, 16 Jan 2021 15:31: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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '47' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3720,43 +3842,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:53 GMT + - Sat, 16 Jan 2021 15:31:12 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-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: + - '46' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3771,35 +3895,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba169033-ce04-4c9e-8ece-0482a10b7b4b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 08:06:54 GMT + - Sat, 16 Jan 2021 15:31: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: + - '45' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -3814,24 +3948,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 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;clitest-item000004","name":"azurefileshare;clitest-item000004","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"}},{"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;clitest-item000005","name":"azurefileshare;clitest-item000005","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-item000005","protectionState":"NotProtected"}}]}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1907' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:55 GMT + - Sat, 16 Jan 2021 15:31:14 GMT expires: - '-1' pragma: @@ -3846,15 +3980,15 @@ interactions: - 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: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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-item000006", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json @@ -3864,48 +3998,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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%3Bclitest-item000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' 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;clitest-item000004/operationsStatus/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:06:56 GMT + - Sat, 16 Jan 2021 15:31: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/protectedItems/azurefileshare;clitest-item000004/operationResults/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.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' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3920,24 +4054,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:56 GMT + - Sat, 16 Jan 2021 15:31:16 GMT expires: - '-1' pragma: @@ -3952,6 +4086,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -3971,24 +4107,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"InProgress","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:57 GMT + - Sat, 16 Jan 2021 15:31:18 GMT expires: - '-1' pragma: @@ -4003,6 +4139,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -4022,24 +4160,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/480fa9c6-a4f6-43cb-a292-99ac4a78d71c?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","name":"480fa9c6-a4f6-43cb-a292-99ac4a78d71c","status":"Succeeded","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"2021-01-16T15:30:37.2594297Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3c250b1c-ae84-414c-8d35-ad7e17c1377b"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:06:59 GMT + - Sat, 16 Jan 2021 15:31:20 GMT expires: - '-1' pragma: @@ -4054,6 +4192,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -4073,30 +4213,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3c250b1c-ae84-414c-8d35-ad7e17c1377b?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3c250b1c-ae84-414c-8d35-ad7e17c1377b","name":"3c250b1c-ae84-414c-8d35-ad7e17c1377b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.3224555S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T15:30:37.2594297Z","endTime":"2021-01-16T15:31:19.5818852Z","activityId":"b0d45e8b-580f-11eb-8e3a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '187' + - '946' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:00 GMT + - Sat, 16 Jan 2021 15:31: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: @@ -4105,6 +4248,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4124,24 +4269,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:01 GMT + - Sat, 16 Jan 2021 15:31:21 GMT expires: - '-1' pragma: @@ -4156,6 +4301,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4175,24 +4322,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '187' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:02 GMT + - Sat, 16 Jan 2021 15:31:21 GMT expires: - '-1' pragma: @@ -4207,6 +4354,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4226,24 +4375,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"azurefileshare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","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-item000005","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:04 GMT + - Sat, 16 Jan 2021 15:31:22 GMT expires: - '-1' pragma: @@ -4258,13 +4407,17 @@ interactions: - 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 + body: '{"properties": {"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-item000006", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -4274,46 +4427,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + 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%3Bdedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b/operationsStatus/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:07:05 GMT + - Sat, 16 Jan 2021 15:31: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/protectedItems/azurefileshare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b/operationResults/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4328,24 +4483,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:06 GMT + - Sat, 16 Jan 2021 15:31:23 GMT expires: - '-1' pragma: @@ -4360,6 +4515,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4379,24 +4536,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:07 GMT + - Sat, 16 Jan 2021 15:31:25 GMT expires: - '-1' pragma: @@ -4411,6 +4568,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -4430,24 +4589,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:09 GMT + - Sat, 16 Jan 2021 15:31:26 GMT expires: - '-1' pragma: @@ -4462,6 +4621,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -4481,24 +4642,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:10 GMT + - Sat, 16 Jan 2021 15:31:28 GMT expires: - '-1' pragma: @@ -4513,6 +4674,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -4532,24 +4695,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:11 GMT + - Sat, 16 Jan 2021 15:31:29 GMT expires: - '-1' pragma: @@ -4564,6 +4727,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -4583,24 +4748,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:12 GMT + - Sat, 16 Jan 2021 15:31:30 GMT expires: - '-1' pragma: @@ -4615,6 +4780,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -4634,24 +4801,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:13 GMT + - Sat, 16 Jan 2021 15:31:31 GMT expires: - '-1' pragma: @@ -4666,6 +4833,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -4685,24 +4854,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:14 GMT + - Sat, 16 Jan 2021 15:31:33 GMT expires: - '-1' pragma: @@ -4717,6 +4886,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -4736,24 +4907,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:16 GMT + - Sat, 16 Jan 2021 15:31:34 GMT expires: - '-1' pragma: @@ -4768,6 +4939,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4787,24 +4960,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:17 GMT + - Sat, 16 Jan 2021 15:31:35 GMT expires: - '-1' pragma: @@ -4819,6 +4992,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -4838,24 +5013,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:18 GMT + - Sat, 16 Jan 2021 15:31:36 GMT expires: - '-1' pragma: @@ -4870,6 +5045,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -4889,24 +5066,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:19 GMT + - Sat, 16 Jan 2021 15:31:37 GMT expires: - '-1' pragma: @@ -4921,6 +5098,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -4940,24 +5119,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:21 GMT + - Sat, 16 Jan 2021 15:31:38 GMT expires: - '-1' pragma: @@ -4972,6 +5151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -4991,24 +5172,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:22 GMT + - Sat, 16 Jan 2021 15:31:40 GMT expires: - '-1' pragma: @@ -5023,6 +5204,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -5042,24 +5225,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:23 GMT + - Sat, 16 Jan 2021 15:31:41 GMT expires: - '-1' pragma: @@ -5074,6 +5257,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -5093,24 +5278,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:24 GMT + - Sat, 16 Jan 2021 15:31:42 GMT expires: - '-1' pragma: @@ -5125,6 +5310,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -5144,24 +5331,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:26 GMT + - Sat, 16 Jan 2021 15:31:44 GMT expires: - '-1' pragma: @@ -5176,6 +5363,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -5195,24 +5384,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:27 GMT + - Sat, 16 Jan 2021 15:31:45 GMT expires: - '-1' pragma: @@ -5227,6 +5416,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -5246,24 +5437,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:28 GMT + - Sat, 16 Jan 2021 15:31:46 GMT expires: - '-1' pragma: @@ -5278,6 +5469,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -5297,24 +5490,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:29 GMT + - Sat, 16 Jan 2021 15:31:48 GMT expires: - '-1' pragma: @@ -5329,6 +5522,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -5348,24 +5543,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:30 GMT + - Sat, 16 Jan 2021 15:31:49 GMT expires: - '-1' pragma: @@ -5380,6 +5575,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -5399,24 +5596,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:32 GMT + - Sat, 16 Jan 2021 15:31:50 GMT expires: - '-1' pragma: @@ -5431,6 +5628,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -5450,24 +5649,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:33 GMT + - Sat, 16 Jan 2021 15:31:51 GMT expires: - '-1' pragma: @@ -5482,6 +5681,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -5501,24 +5702,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:34 GMT + - Sat, 16 Jan 2021 15:31:52 GMT expires: - '-1' pragma: @@ -5533,6 +5734,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -5552,24 +5755,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:35 GMT + - Sat, 16 Jan 2021 15:31:53 GMT expires: - '-1' pragma: @@ -5584,6 +5787,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -5603,24 +5808,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:36 GMT + - Sat, 16 Jan 2021 15:31:55 GMT expires: - '-1' pragma: @@ -5635,6 +5840,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -5654,24 +5861,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"InProgress","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:38 GMT + - Sat, 16 Jan 2021 15:31:56 GMT expires: - '-1' pragma: @@ -5686,6 +5893,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -5705,24 +5914,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/38f0eaa3-c1ee-4978-93bc-430de7fe82fe?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","name":"38f0eaa3-c1ee-4978-93bc-430de7fe82fe","status":"Succeeded","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"2021-01-16T15:31:23.8678973Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1910ac49-d3ab-45f4-86e3-9904683f27bd"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:40 GMT + - Sat, 16 Jan 2021 15:31:57 GMT expires: - '-1' pragma: @@ -5737,6 +5946,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -5756,30 +5967,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1910ac49-d3ab-45f4-86e3-9904683f27bd?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1910ac49-d3ab-45f4-86e3-9904683f27bd","name":"1910ac49-d3ab-45f4-86e3-9904683f27bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.8763428S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000005","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T15:31:23.8678973Z","endTime":"2021-01-16T15:31:56.7442401Z","activityId":"e21fd76c-580f-11eb-af7e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '187' + - '946' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:41 GMT + - Sat, 16 Jan 2021 15:31: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: @@ -5788,6 +6002,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -5801,30 +6017,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -n --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":2,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:42 GMT + - Sat, 16 Jan 2021 15:31:58 GMT expires: - '-1' pragma: @@ -5839,6 +6055,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5852,30 +6070,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000006"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:43 GMT + - Sat, 16 Jan 2021 15:31:58 GMT expires: - '-1' pragma: @@ -5890,6 +6108,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5903,30 +6123,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-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%3Bb2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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/protectedItems/AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-01-16T15:31:19.2569946Z"},"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-item000006"}}' headers: cache-control: - no-cache content-length: - - '187' + - '1462' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:45 GMT + - Sat, 16 Jan 2021 15:31:59 GMT expires: - '-1' pragma: @@ -5941,6 +6161,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5954,30 +6176,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000006"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:46 GMT + - Sat, 16 Jan 2021 15:32:00 GMT expires: - '-1' pragma: @@ -5992,6 +6214,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6005,30 +6229,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000006"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:47 GMT + - Sat, 16 Jan 2021 15:32:01 GMT expires: - '-1' pragma: @@ -6043,6 +6267,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6056,30 +6282,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000006"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:48 GMT + - Sat, 16 Jan 2021 15:32:01 GMT expires: - '-1' pragma: @@ -6094,6 +6320,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6107,30 +6335,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000006"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:49 GMT + - Sat, 16 Jan 2021 15:32:02 GMT expires: - '-1' pragma: @@ -6145,6 +6373,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6158,30 +6388,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '187' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:51 GMT + - Sat, 16 Jan 2021 15:32:02 GMT expires: - '-1' pragma: @@ -6196,62 +6426,68 @@ interactions: - 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 + body: '{"properties": {"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-item000007", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + 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%3Bb2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5/operationsStatus/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:07:52 GMT + - Sat, 16 Jan 2021 15:32: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/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5/operationResults/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-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: + - '1196' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6260,30 +6496,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:53 GMT + - Sat, 16 Jan 2021 15:32:03 GMT expires: - '-1' pragma: @@ -6298,6 +6534,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6311,30 +6549,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:54 GMT + - Sat, 16 Jan 2021 15:32:05 GMT expires: - '-1' pragma: @@ -6349,6 +6587,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6362,30 +6602,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:56 GMT + - Sat, 16 Jan 2021 15:32:06 GMT expires: - '-1' pragma: @@ -6400,6 +6640,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -6413,30 +6655,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:57 GMT + - Sat, 16 Jan 2021 15:32:07 GMT expires: - '-1' pragma: @@ -6451,6 +6693,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6464,30 +6708,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:07:58 GMT + - Sat, 16 Jan 2021 15:32:09 GMT expires: - '-1' pragma: @@ -6502,6 +6746,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6515,30 +6761,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:00 GMT + - Sat, 16 Jan 2021 15:32:10 GMT expires: - '-1' pragma: @@ -6553,6 +6799,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6566,30 +6814,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:01 GMT + - Sat, 16 Jan 2021 15:32:11 GMT expires: - '-1' pragma: @@ -6604,6 +6852,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6617,30 +6867,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:02 GMT + - Sat, 16 Jan 2021 15:32:12 GMT expires: - '-1' pragma: @@ -6655,6 +6905,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6668,30 +6920,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:03 GMT + - Sat, 16 Jan 2021 15:32:14 GMT expires: - '-1' pragma: @@ -6706,6 +6958,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6719,30 +6973,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:04 GMT + - Sat, 16 Jan 2021 15:32:15 GMT expires: - '-1' pragma: @@ -6757,6 +7011,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6770,30 +7026,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:05 GMT + - Sat, 16 Jan 2021 15:32:16 GMT expires: - '-1' pragma: @@ -6808,6 +7064,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -6821,30 +7079,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:07 GMT + - Sat, 16 Jan 2021 15:32:17 GMT expires: - '-1' pragma: @@ -6859,6 +7117,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -6872,30 +7132,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:08 GMT + - Sat, 16 Jan 2021 15:32:18 GMT expires: - '-1' pragma: @@ -6910,6 +7170,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -6923,30 +7185,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"InProgress","startTime":"2019-11-27T08:06:56.248296Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:09 GMT + - Sat, 16 Jan 2021 15:32:20 GMT expires: - '-1' pragma: @@ -6961,6 +7223,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -6974,30 +7238,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d375e239-fcbd-41fc-a581-dda84551c76c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"d375e239-fcbd-41fc-a581-dda84551c76c","name":"d375e239-fcbd-41fc-a581-dda84551c76c","status":"Succeeded","startTime":"2019-11-27T08:06:56.248296Z","endTime":"2019-11-27T08:06:56.248296Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bb4f997e-dc0c-4dc4-a6d6-f7e564a6f02c"}}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '302' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:10 GMT + - Sat, 16 Jan 2021 15:32:21 GMT expires: - '-1' pragma: @@ -7012,6 +7276,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -7025,39 +7291,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bb4f997e-dc0c-4dc4-a6d6-f7e564a6f02c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bb4f997e-dc0c-4dc4-a6d6-f7e564a6f02c","name":"bb4f997e-dc0c-4dc4-a6d6-f7e564a6f02c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1M13.5304748S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000006"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:06:56.248296Z","endTime":"2019-11-27T08:08:09.7787708Z","activityId":"b2cf4140-10ec-11ea-bb64-186024943d4f"}}' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '923' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:11 GMT + - Sat, 16 Jan 2021 15:32: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: @@ -7066,6 +7329,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -7079,49 +7344,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:12 GMT + - Sat, 16 Jan 2021 15:32: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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: - - '1194' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7130,43 +7397,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:12 GMT + - Sat, 16 Jan 2021 15:32: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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '132' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7175,43 +7450,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:13 GMT + - Sat, 16 Jan 2021 15:32: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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7220,43 +7503,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:15 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7265,43 +7556,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:16 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '129' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7310,43 +7609,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:17 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7355,43 +7662,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:18 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '127' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7400,43 +7715,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:19 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '126' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7445,43 +7768,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:21 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7490,43 +7821,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"InProgress","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:22 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '124' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7535,43 +7874,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/19a8b71f-a3cd-463c-a6b1-b81dd5223c00?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","name":"19a8b71f-a3cd-463c-a6b1-b81dd5223c00","status":"Succeeded","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"2021-01-16T15:32:03.4492274Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5af7ecf0-0bc3-4d60-a116-9fc2dfa702c6"}}' headers: cache-control: - no-cache content-length: - - '0' + - '304' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:23 GMT + - Sat, 16 Jan 2021 15:32: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/operationResults/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-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: + - '123' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7580,39 +7927,54 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/eddae009-5853-4b7b-94a2-17b565d17bfd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5af7ecf0-0bc3-4d60-a116-9fc2dfa702c6?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5af7ecf0-0bc3-4d60-a116-9fc2dfa702c6","name":"5af7ecf0-0bc3-4d60-a116-9fc2dfa702c6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.2047737S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T15:32:03.4492274Z","endTime":"2021-01-16T15:32:35.6540011Z","activityId":"fa947e1c-580f-11eb-8b23-c8f750f92764"}}' headers: cache-control: - no-cache + content-length: + - '946' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:24 GMT + - Sat, 16 Jan 2021 15:32: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: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -7621,30 +7983,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000007"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '880' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:25 GMT + - Sat, 16 Jan 2021 15:32:37 GMT expires: - '-1' pragma: @@ -7659,6 +8021,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -7672,30 +8036,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000006?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + 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;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","name":"AzureFileShare;b2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5","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-item000007"}},{"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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '740' + - '2643' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:25 GMT + - Sat, 16 Jan 2021 15:32:38 GMT expires: - '-1' pragma: @@ -7710,6 +8074,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -7723,49 +8089,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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%3Bb2cfa16e3a7d3e7cd5ff19f3afb07e32718941c98964d0c90e8c1401f8f2a6a5?api-version=2020-10-01 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;clitest-item000005","name":"azurefileshare;clitest-item000005","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-item000005","protectionState":"NotProtected"}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 cache-control: - no-cache content-length: - - '959' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:08:26 GMT + - Sat, 16 Jan 2021 15:32:38 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7774,30 +8140,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 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;clitest-item000005","name":"azurefileshare;clitest-item000005","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-item000005","protectionState":"NotProtected"}}]}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '959' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:25 GMT + - Sat, 16 Jan 2021 15:32:38 GMT expires: - '-1' pragma: @@ -7812,66 +8178,66 @@ interactions: - 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: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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-item000006", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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%3Bclitest-item000005?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' 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;clitest-item000005/operationsStatus/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:08:26 GMT + - Sat, 16 Jan 2021 15:32: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/protectedItems/azurefileshare;clitest-item000005/operationResults/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.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' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7880,21 +8246,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7903,7 +8269,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:26 GMT + - Sat, 16 Jan 2021 15:32:42 GMT expires: - '-1' pragma: @@ -7918,6 +8284,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -7931,21 +8299,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7954,7 +8322,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:28 GMT + - Sat, 16 Jan 2021 15:32:43 GMT expires: - '-1' pragma: @@ -7969,6 +8337,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -7982,21 +8352,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8005,7 +8375,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:29 GMT + - Sat, 16 Jan 2021 15:32:44 GMT expires: - '-1' pragma: @@ -8020,6 +8390,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -8033,21 +8405,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8056,7 +8428,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:30 GMT + - Sat, 16 Jan 2021 15:32:45 GMT expires: - '-1' pragma: @@ -8071,6 +8443,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -8084,21 +8458,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8107,7 +8481,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:31 GMT + - Sat, 16 Jan 2021 15:32:46 GMT expires: - '-1' pragma: @@ -8122,6 +8496,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -8135,21 +8511,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8158,7 +8534,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:32 GMT + - Sat, 16 Jan 2021 15:32:48 GMT expires: - '-1' pragma: @@ -8173,6 +8549,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -8186,21 +8564,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8209,7 +8587,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:34 GMT + - Sat, 16 Jan 2021 15:32:49 GMT expires: - '-1' pragma: @@ -8224,6 +8602,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -8237,21 +8617,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8260,7 +8640,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:35 GMT + - Sat, 16 Jan 2021 15:32:50 GMT expires: - '-1' pragma: @@ -8275,6 +8655,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -8288,21 +8670,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8311,7 +8693,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:36 GMT + - Sat, 16 Jan 2021 15:32:52 GMT expires: - '-1' pragma: @@ -8326,6 +8708,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -8339,21 +8723,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8362,7 +8746,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:37 GMT + - Sat, 16 Jan 2021 15:32:53 GMT expires: - '-1' pragma: @@ -8377,6 +8761,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -8390,21 +8776,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8413,7 +8799,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:39 GMT + - Sat, 16 Jan 2021 15:32:54 GMT expires: - '-1' pragma: @@ -8428,6 +8814,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -8441,21 +8829,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8464,7 +8852,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:40 GMT + - Sat, 16 Jan 2021 15:32:55 GMT expires: - '-1' pragma: @@ -8479,6 +8867,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -8492,21 +8882,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8515,7 +8905,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:42 GMT + - Sat, 16 Jan 2021 15:32:57 GMT expires: - '-1' pragma: @@ -8530,6 +8920,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -8543,21 +8935,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8566,7 +8958,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:43 GMT + - Sat, 16 Jan 2021 15:32:58 GMT expires: - '-1' pragma: @@ -8581,6 +8973,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -8594,21 +8988,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"InProgress","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8617,7 +9011,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:44 GMT + - Sat, 16 Jan 2021 15:32:59 GMT expires: - '-1' pragma: @@ -8632,6 +9026,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -8645,30 +9041,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1a92f65c-5ee4-4676-bf2b-da301f3aa5fb?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","name":"1a92f65c-5ee4-4676-bf2b-da301f3aa5fb","status":"Succeeded","startTime":"2021-01-16T15:32:38.8184484Z","endTime":"2021-01-16T15:32:38.8184484Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6a4c0729-c3ab-4335-be69-195765001bfe"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:45 GMT + - Sat, 16 Jan 2021 15:33:01 GMT expires: - '-1' pragma: @@ -8683,6 +9079,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -8696,36 +9094,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6a4c0729-c3ab-4335-be69-195765001bfe?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6a4c0729-c3ab-4335-be69-195765001bfe","name":"6a4c0729-c3ab-4335-be69-195765001bfe","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4340139S","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-01-16T15:32:38.8184484Z","endTime":"2021-01-16T15:33:00.2524623Z","activityId":"10202e56-5810-11eb-acc7-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:46 GMT + - Sat, 16 Jan 2021 15:33: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: @@ -8734,6 +9134,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -8747,30 +9149,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + 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;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","name":"AzureFileShare;dedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","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-item000006"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:48 GMT + - Sat, 16 Jan 2021 15:33:01 GMT expires: - '-1' pragma: @@ -8785,6 +9187,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -8798,49 +9202,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + 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%3Bdedda938745aa2a669bcb2ce9916180f767096cf46314c5a353ebf6dfd8ba70b?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:08:50 GMT + - Sat, 16 Jan 2021 15:33:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8849,30 +9253,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:51 GMT + - Sat, 16 Jan 2021 15:33:03 GMT expires: - '-1' pragma: @@ -8887,6 +9291,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -8900,30 +9306,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:52 GMT + - Sat, 16 Jan 2021 15:33:04 GMT expires: - '-1' pragma: @@ -8938,6 +9344,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -8951,30 +9359,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:53 GMT + - Sat, 16 Jan 2021 15:33:05 GMT expires: - '-1' pragma: @@ -8989,6 +9397,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -9002,30 +9412,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:54 GMT + - Sat, 16 Jan 2021 15:33:07 GMT expires: - '-1' pragma: @@ -9040,6 +9450,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -9053,30 +9465,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:56 GMT + - Sat, 16 Jan 2021 15:33:08 GMT expires: - '-1' pragma: @@ -9091,6 +9503,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -9104,30 +9518,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:57 GMT + - Sat, 16 Jan 2021 15:33:09 GMT expires: - '-1' pragma: @@ -9142,6 +9556,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -9155,30 +9571,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:58 GMT + - Sat, 16 Jan 2021 15:33:10 GMT expires: - '-1' pragma: @@ -9193,6 +9609,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -9206,30 +9624,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:08:59 GMT + - Sat, 16 Jan 2021 15:33:11 GMT expires: - '-1' pragma: @@ -9244,6 +9662,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -9257,30 +9677,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:00 GMT + - Sat, 16 Jan 2021 15:33:13 GMT expires: - '-1' pragma: @@ -9295,6 +9715,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -9308,30 +9730,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:01 GMT + - Sat, 16 Jan 2021 15:33:14 GMT expires: - '-1' pragma: @@ -9346,6 +9768,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -9359,30 +9783,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:03 GMT + - Sat, 16 Jan 2021 15:33:15 GMT expires: - '-1' pragma: @@ -9397,6 +9821,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -9410,30 +9836,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:04 GMT + - Sat, 16 Jan 2021 15:33:17 GMT expires: - '-1' pragma: @@ -9448,6 +9874,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -9461,30 +9889,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:05 GMT + - Sat, 16 Jan 2021 15:33:18 GMT expires: - '-1' pragma: @@ -9499,6 +9927,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -9512,30 +9942,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:06 GMT + - Sat, 16 Jan 2021 15:33:19 GMT expires: - '-1' pragma: @@ -9550,6 +9980,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -9563,30 +9995,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"InProgress","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:07 GMT + - Sat, 16 Jan 2021 15:33:20 GMT expires: - '-1' pragma: @@ -9601,6 +10033,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -9614,30 +10048,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","name":"1f0d27b4-1f26-4c0b-ad0e-ec56b7efdc88","status":"Succeeded","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"2019-11-27T08:08:26.8850072Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"12ba374e-1042-4cb5-b795-d6c643dd5128"}}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:09 GMT + - Sat, 16 Jan 2021 15:33:22 GMT expires: - '-1' pragma: @@ -9652,6 +10086,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -9665,39 +10101,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/12ba374e-1042-4cb5-b795-d6c643dd5128?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/12ba374e-1042-4cb5-b795-d6c643dd5128","name":"12ba374e-1042-4cb5-b795-d6c643dd5128","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.2479095S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000005","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000006"}},"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:08:26.8850072Z","endTime":"2019-11-27T08:09:09.1329167Z","activityId":"0e168112-10ed-11ea-9b17-186024943d4f"}}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"InProgress","startTime":"2021-01-16T15:33:02.368752Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '922' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:09 GMT + - Sat, 16 Jan 2021 15:33: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: @@ -9706,6 +10139,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -9719,30 +10154,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n --backup-management-type --query + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":2,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","name":"a5af67ed-cc18-41a6-8c7d-3d2fd00e0b40","status":"Succeeded","startTime":"2021-01-16T15:33:02.368752Z","endTime":"2021-01-16T15:33:02.368752Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"04029dd0-83ae-4e66-84ba-9a79a0fe4800"}}' headers: cache-control: - no-cache content-length: - - '880' + - '302' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:10 GMT + - Sat, 16 Jan 2021 15:33:24 GMT expires: - '-1' pragma: @@ -9757,6 +10192,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -9770,36 +10207,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04029dd0-83ae-4e66-84ba-9a79a0fe4800?api-version=2020-10-01 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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000006"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04029dd0-83ae-4e66-84ba-9a79a0fe4800","name":"04029dd0-83ae-4e66-84ba-9a79a0fe4800","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.9281039S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000005","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-16T15:33:02.368752Z","endTime":"2021-01-16T15:33:24.2968559Z","activityId":"1e435964-5810-11eb-a0b9-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2449' + - '905' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:10 GMT + - Sat, 16 Jan 2021 15:33: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: @@ -9808,6 +10247,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -9821,30 +10262,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/protectedItems/AzureFileShare%3Bclitest-item000004?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 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/protectedItems/AzureFileShare;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2019-11-27T08:08:09.4506726Z"},"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-item000006"}}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' headers: cache-control: - no-cache content-length: - - '1365' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:11 GMT + - Sat, 16 Jan 2021 15:33:26 GMT expires: - '-1' pragma: @@ -9859,6 +10300,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -9872,49 +10315,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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?api-version=2020-10-01 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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000006"}}]}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2449' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:09:11 GMT + - Sat, 16 Jan 2021 15:33:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/a9fbc65f-6d46-427e-8601-350f783a3f31?fabricName=Azure?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -9923,49 +10366,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000006"}}]}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2449' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:11 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -9974,49 +10419,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000006"}}]}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2449' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:12 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10025,49 +10472,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000006"}}]}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2449' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:13 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10076,99 +10525,99 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000007?api-version=2019-06-15 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:13 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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-item000007", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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%3Bclitest-item000004?api-version=2019-06-15 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '' + 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;clitest-item000004/operationsStatus/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2019-05-13 + - https://management.azure.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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:09:14 GMT + - Sat, 16 Jan 2021 15:33: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2019-05-13 + - https://management.azure.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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -10182,49 +10631,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:13 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10233,49 +10684,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:15 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '76' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10284,49 +10737,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:16 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '75' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10335,49 +10790,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:17 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '74' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10386,49 +10843,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:18 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '73' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10437,49 +10896,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:20 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '72' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10488,49 +10949,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:21 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '71' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10539,49 +11002,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:22 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '70' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10590,49 +11055,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:23 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '69' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10641,49 +11108,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:25 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '68' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10692,49 +11161,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:27 GMT + - Sat, 16 Jan 2021 15:33: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/operationResults/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '67' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10743,49 +11214,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:28 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '66' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10794,49 +11267,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:29 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '65' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10845,49 +11320,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:30 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '64' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10896,49 +11373,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:09:31 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '63' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10947,2502 +11426,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"InProgress","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/3493d5b0-ac87-4139-bcc2-bea39abb37fe?api-version=2016-12-01 - response: - body: - string: '{"id":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","name":"3493d5b0-ac87-4139-bcc2-bea39abb37fe","status":"Succeeded","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"2019-11-27T08:09:14.2463415Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f82697f0-a6c9-42ae-a261-091cdeeb18be"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/f82697f0-a6c9-42ae-a261-091cdeeb18be?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f82697f0-a6c9-42ae-a261-091cdeeb18be","name":"f82697f0-a6c9-42ae-a261-091cdeeb18be","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.591318S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000007"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:09:14.2463415Z","endTime":"2019-11-27T08:09:55.8376595Z","activityId":"328b0134-10ed-11ea-835b-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '921' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000007"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2449' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}},{"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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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-item000007"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2449' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:09:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2019-05-13 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - 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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:09:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"InProgress","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/923f73f0-76c2-455c-afb9-c2667405332f?api-version=2016-12-01 - response: - body: - string: '{"id":"923f73f0-76c2-455c-afb9-c2667405332f","name":"923f73f0-76c2-455c-afb9-c2667405332f","status":"Succeeded","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"2019-11-27T08:09:58.1151156Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"cab3728b-262c-4e03-9f30-8ff5e04183ab"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/cab3728b-262c-4e03-9f30-8ff5e04183ab?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cab3728b-262c-4e03-9f30-8ff5e04183ab","name":"cab3728b-262c-4e03-9f30-8ff5e04183ab","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.2061829S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:09:58.1151156Z","endTime":"2019-11-27T08:10:20.3212985Z","activityId":"4cf18286-10ed-11ea-b93b-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '882' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000005","name":"AzureFileShare;clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000005","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-item000006"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1230' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000005?api-version=2019-06-15 - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:10:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2019-05-13 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - 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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-01 - response: - body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-01 - response: - body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:10:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - 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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-01 - response: - body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:24 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '62' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13451,49 +11479,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:25 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '61' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13502,49 +11532,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:26 GMT + - Sat, 16 Jan 2021 15:33: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '60' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13553,49 +11585,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:28 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '59' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13604,49 +11638,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:29 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '58' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13655,49 +11691,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:30 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '57' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13706,49 +11744,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:31 GMT + - Sat, 16 Jan 2021 15:33: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + strict-transport-security: + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13757,49 +11797,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:32 GMT + - Sat, 16 Jan 2021 15:34: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '55' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13808,49 +11850,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:34 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '54' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13859,49 +11903,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:35 GMT + - Sat, 16 Jan 2021 15:34: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '53' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13910,49 +11956,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:36 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '52' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13961,49 +12009,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:37 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '51' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14012,49 +12062,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:39 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '50' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14063,49 +12115,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:40 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '49' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14114,49 +12168,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:41 GMT + - Sat, 16 Jan 2021 15:34:08 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '48' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14165,49 +12221,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"InProgress","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"0001-01-01T00:00:00"}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:42 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '47' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14216,49 +12274,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9d5a4cf5-3986-4e48-b5e8-1de65a93be63?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","name":"9d5a4cf5-3986-4e48-b5e8-1de65a93be63","status":"Succeeded","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"2019-11-27T08:10:22.0572292Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1e1b52bb-781c-4a67-91fb-f58877715ce9"}}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:43 GMT + - Sat, 16 Jan 2021 15:34:12 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '46' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14267,51 +12327,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1e1b52bb-781c-4a67-91fb-f58877715ce9?api-version=2019-06-15 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1e1b52bb-781c-4a67-91fb-f58877715ce9","name":"1e1b52bb-781c-4a67-91fb-f58877715ce9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.4653152S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000005","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:10:22.0572292Z","endTime":"2019-11-27T08:10:43.5225444Z","activityId":"5b362834-10ed-11ea-8b0e-186024943d4f"}}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '882' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:45 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '45' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14326,43 +12386,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:44 GMT + - Sat, 16 Jan 2021 15:34: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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '44' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -14374,41 +12436,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-12-01 + 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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: - string: '' + 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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:10:45 GMT + - Sat, 16 Jan 2021 15:34:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/b061d883-b997-4b5a-bfc4-68d011585f73?fabricName=Azure?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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: + - '43' x-powered-by: - ASP.NET status: @@ -14428,18 +12492,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14447,11 +12511,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:45 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14460,6 +12524,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -14479,18 +12545,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14498,11 +12564,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:47 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14511,6 +12577,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -14530,18 +12598,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14549,11 +12617,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:48 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14562,6 +12630,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -14581,18 +12651,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14600,11 +12670,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:49 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14613,6 +12683,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -14632,18 +12704,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14651,11 +12723,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:51 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14664,6 +12736,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' x-powered-by: - ASP.NET status: @@ -14683,18 +12757,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14702,11 +12776,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:52 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14715,6 +12789,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -14734,18 +12810,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14753,11 +12829,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:53 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14766,6 +12842,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' x-powered-by: - ASP.NET status: @@ -14785,18 +12863,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14804,11 +12882,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:54 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14817,6 +12895,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -14836,18 +12916,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14855,11 +12935,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:55 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14868,6 +12948,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -14887,18 +12969,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14906,11 +12988,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:57 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14919,6 +13001,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -14938,18 +13022,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14957,11 +13041,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:10:58 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -14970,6 +13054,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -14989,18 +13075,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15008,11 +13094,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:00 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15021,6 +13107,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -15040,18 +13128,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15059,11 +13147,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:01 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15072,6 +13160,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -15091,18 +13181,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15110,11 +13200,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:03 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15123,6 +13213,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -15142,18 +13234,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15161,11 +13253,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:04 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15174,6 +13266,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -15193,18 +13287,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15212,11 +13306,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:05 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15225,6 +13319,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -15244,18 +13340,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15263,11 +13359,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:06 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15276,6 +13372,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -15295,18 +13393,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15314,11 +13412,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:08 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15327,6 +13425,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -15346,18 +13446,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-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/b061d883-b997-4b5a-bfc4-68d011585f73?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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15365,11 +13465,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:09 GMT + - Sat, 16 Jan 2021 15:34: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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 pragma: - no-cache server: @@ -15378,6 +13478,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' x-powered-by: - ASP.NET status: @@ -15397,12 +13499,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b061d883-b997-4b5a-bfc4-68d011585f73?api-version=2016-12-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/a9fbc65f-6d46-427e-8601-350f783a3f31?api-version=2020-10-01 response: body: string: '' @@ -15412,7 +13514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:11:10 GMT + - Sat, 16 Jan 2021 15:34:40 GMT expires: - '-1' pragma: @@ -15421,6 +13523,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -15440,12 +13544,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -15457,7 +13561,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:11 GMT + - Sat, 16 Jan 2021 15:36:21 GMT expires: - '-1' pragma: @@ -15472,6 +13576,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -15493,8 +13599,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -15508,7 +13614,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:13 GMT + - Sat, 16 Jan 2021 15:36:26 GMT expires: - '-1' pragma: @@ -15518,7 +13624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK 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 3ef8d5b8957..087f4a9119d 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T07%3A55%3A52.0058246Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-16T15%3A29%3A35.0372856Z''\"","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: - - '400' + - '484' content-type: - application/json date: - - Wed, 27 Nov 2019 07:55:51 GMT + - Sat, 16 Jan 2021 15:29:35 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '208' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:13 GMT + - Sat, 16 Jan 2021 15:29:58 GMT expires: - '-1' pragma: @@ -98,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' status: code: 200 message: OK @@ -111,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.18.0 x-ms-date: - - Wed, 27 Nov 2019 07:56:14 GMT + - Sat, 16 Jan 2021 15:29:59 GMT x-ms-share-quota: - '1' x-ms-version: @@ -127,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:14 GMT + - Sat, 16 Jan 2021 15:29:59 GMT etag: - - '"0x8D7730F46B9F21A"' + - '"0x8D8BA3396343E1B"' last-modified: - - Wed, 27 Nov 2019 07:56:14 GMT + - Sat, 16 Jan 2021 15:29:59 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -153,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30: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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -170,7 +167,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:14 GMT + - Sat, 16 Jan 2021 15:29:59 GMT expires: - '-1' pragma: @@ -185,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -193,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T17:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-17T01:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T17:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-17T01:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -211,17 +210,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30: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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -230,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:15 GMT + - Sat, 16 Jan 2021 15:30:00 GMT expires: - '-1' pragma: @@ -246,7 +245,113 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:30: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: + - '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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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;ContainerAutoProtection;containerautoprotecti215","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti215","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti215","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti667","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;gesahoo;gesahoodiag","name":"StorageContainer;Storage;gesahoo;gesahoodiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoodiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoodiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","name":"StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008groupdisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks"}},{"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: + cache-control: + - no-cache + content-length: + - '4519' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:30: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: + - '149' x-powered-by: - ASP.NET status: @@ -268,28 +373,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?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/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:16 GMT + - Sat, 16 Jan 2021 15:30: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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -297,7 +402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -317,12 +422,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -332,17 +437,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:16 GMT + - Sat, 16 Jan 2021 15:30: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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -362,12 +469,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -377,17 +484,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:17 GMT + - Sat, 16 Jan 2021 15:30: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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -407,12 +516,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -422,17 +531,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:19 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -452,12 +563,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -467,17 +578,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:21 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -497,12 +610,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -512,17 +625,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:22 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -542,12 +657,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -557,17 +672,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:23 GMT + - Sat, 16 Jan 2021 15:30:08 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -587,12 +704,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -602,17 +719,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:24 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -632,12 +751,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' @@ -647,17 +766,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:56:25 GMT + - Sat, 16 Jan 2021 15:30:12 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: @@ -677,33 +798,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/19d7a39c-1639-40a6-bf36-bfab2bffa2ee?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 07:56:26 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-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: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -718,43 +845,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b285059d-6649-4fe8-981d-1f2bea168b02?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache - content-length: - - '12' - content-type: - - application/json date: - - Wed, 27 Nov 2019 07:56:27 GMT + - Sat, 16 Jan 2021 15:30: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: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -769,24 +888,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitesto5626juekg43ao4jd","name":"StorageContainer;Storage;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitesto5626juekg43ao4jd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesto5626juekg43ao4jd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Storage/storageAccounts/clitesto5626juekg43ao4jd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest5wjkm42yso3qdqpad","name":"StorageContainer;Storage;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest5wjkm42yso3qdqpad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest5wjkm42yso3qdqpad","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Storage/storageAccounts/clitest5wjkm42yso3qdqpad"}},{"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;ContainerAutoProtection;containerautoprotecti215","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti215","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti215","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti215"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","name":"StorageContainer;Storage;ContainerAutoProtection;containerautoprotecti667","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"containerautoprotecti667","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContainerAutoProtection/providers/Microsoft.Storage/storageAccounts/containerautoprotecti667"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;gesahoo;gesahoodiag","name":"StorageContainer;Storage;gesahoo;gesahoodiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoodiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Storage/storageAccounts/gesahoodiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","name":"StorageContainer;Storage;shrja2008_group;shrja2008groupdisks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008groupdisks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Storage/storageAccounts/shrja2008groupdisks"}},{"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: cache-control: - no-cache content-length: - - '5834' + - '7180' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:27 GMT + - Sat, 16 Jan 2021 15:30:14 GMT expires: - '-1' pragma: @@ -801,14 +920,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -825,18 +946,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-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?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -844,11 +965,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:27 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -878,18 +999,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -897,11 +1018,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:28 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -910,6 +1031,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -929,18 +1052,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -948,11 +1071,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:29 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -961,6 +1084,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -980,18 +1105,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -999,11 +1124,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:30 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1012,6 +1137,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1031,18 +1158,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1050,11 +1177,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:31 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1063,6 +1190,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1082,18 +1211,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1101,11 +1230,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:33 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1114,6 +1243,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1133,18 +1264,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1152,11 +1283,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:34 GMT + - Sat, 16 Jan 2021 15:30: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1165,6 +1296,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1184,18 +1317,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1203,11 +1336,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:36 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1216,6 +1349,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1235,18 +1370,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1254,11 +1389,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:37 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1267,6 +1402,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1286,18 +1423,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1305,11 +1442,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:38 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 pragma: - no-cache server: @@ -1318,6 +1455,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1337,43 +1476,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/d3580a0f-06ce-4006-bd84-6ae0ccaf6378?api-version=2020-10-01 response: body: - string: '{}' + 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"}}' 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:39 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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: + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1388,43 +1529,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{}' + 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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:40 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1439,43 +1582,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:43 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1487,41 +1632,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 07:56:44 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1541,18 +1686,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1560,11 +1705,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:45 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-01 pragma: - no-cache server: @@ -1573,6 +1718,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1592,18 +1739,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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/8e0168c4-a518-4d57-bc6e-697d43baad0c?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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1611,11 +1758,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:46 GMT + - Sat, 16 Jan 2021 15:30: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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-01 pragma: - no-cache server: @@ -1624,6 +1771,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1643,43 +1792,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8e0168c4-a518-4d57-bc6e-697d43baad0c?api-version=2016-12-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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '868' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:47 GMT + - Sat, 16 Jan 2021 15:30: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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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: + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1694,43 +1845,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:47 GMT + - Sat, 16 Jan 2021 15:30: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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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: + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1745,43 +1898,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-01 response: body: - string: '{"value":[]}' + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:48 GMT + - Sat, 16 Jan 2021 15:30: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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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: + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1793,46 +1948,40 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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/74c77121-9988-4507-a90e-0f48f7c2abba?api-version=2020-10-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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 07:56:48 GMT + content-type: + - application/json; charset=utf-8 + date: + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -1847,45 +1996,49 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","name":"azurefileshare;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","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: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:49 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -1895,41 +2048,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + 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%3Bd55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b?api-version=2020-10-01 response: body: - string: '{}' + 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/92f814bc-7169-4dc6-b45b-43c1b326d121?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/protectedItems/azurefileshare;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b/operationsStatus/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 07:56:50 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b/operationResults/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-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-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1949,43 +2104,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:51 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2000,43 +2157,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:52 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2051,43 +2210,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:53 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2102,43 +2263,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:55 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2153,43 +2316,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:56 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2204,43 +2369,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:57 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2255,43 +2422,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:58 GMT + - Sat, 16 Jan 2021 15:30: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/operationResults/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2306,43 +2475,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:56:59 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2357,43 +2528,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:00 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2408,43 +2581,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:02 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2459,43 +2634,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:03 GMT + - Sat, 16 Jan 2021 15:30:49 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2510,43 +2687,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:04 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '138' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2561,43 +2740,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:05 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '137' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2612,43 +2793,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:06 GMT + - Sat, 16 Jan 2021 15:30: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '136' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2663,43 +2846,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:07 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '135' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2714,43 +2899,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:09 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '134' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2765,43 +2952,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:10 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2816,43 +3005,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:11 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '132' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2867,43 +3058,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:12 GMT + - Sat, 16 Jan 2021 15:30: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2918,43 +3111,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:13 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2969,43 +3164,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:14 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '129' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3020,43 +3217,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:15 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3071,43 +3270,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:18 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '127' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3122,43 +3323,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:19 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '126' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3173,43 +3376,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:20 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3224,43 +3429,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:21 GMT + - Sat, 16 Jan 2021 15:31:08 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '124' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3275,43 +3482,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:22 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '123' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3326,43 +3535,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:23 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '122' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3377,43 +3588,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:25 GMT + - Sat, 16 Jan 2021 15:31:12 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '121' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3428,43 +3641,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:26 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '120' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3479,43 +3694,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:27 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '119' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3530,43 +3747,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:28 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '118' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3581,43 +3800,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:29 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-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: + - '117' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3632,43 +3853,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"InProgress","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"0001-01-01T00:00:00"}' 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:30 GMT + - Sat, 16 Jan 2021 15:31: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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-powered-by: + 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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3683,35 +3906,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/92f814bc-7169-4dc6-b45b-43c1b326d121?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/65248ecb-0932-4b85-af27-f4e2fa78839e?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"65248ecb-0932-4b85-af27-f4e2fa78839e","name":"65248ecb-0932-4b85-af27-f4e2fa78839e","status":"Succeeded","startTime":"2021-01-16T15:30:37.6433884Z","endTime":"2021-01-16T15:30:37.6433884Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bde82d4f-fbfa-4733-9500-f7dc6d2a57c3"}}' headers: cache-control: - no-cache + content-length: + - '304' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 07:57:31 GMT + - Sat, 16 Jan 2021 15:31: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: + - '115' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -3726,30 +3959,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bde82d4f-fbfa-4733-9500-f7dc6d2a57c3?api-version=2020-10-01 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;clitest-item000004","name":"azurefileshare;clitest-item000004","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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bde82d4f-fbfa-4733-9500-f7dc6d2a57c3","name":"bde82d4f-fbfa-4733-9500-f7dc6d2a57c3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.2492243S","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-01-16T15:30:37.6433884Z","endTime":"2021-01-16T15:31:19.8926127Z","activityId":"b2b9ee05-580f-11eb-ac89-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '959' + - '946' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:32 GMT + - Sat, 16 Jan 2021 15:31: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: @@ -3758,66 +3994,66 @@ interactions: - 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: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy list Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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%3Bclitest-item000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '' + string: '{"value":[{"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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' 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;clitest-item000004/operationsStatus/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '752' + content-type: + - application/json date: - - Wed, 27 Nov 2019 07:57:32 GMT + - Sat, 16 Jan 2021 15:31: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/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;clitest-item000004/operationResults/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-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: @@ -3826,30 +4062,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:34 GMT + - Sat, 16 Jan 2021 15:31:21 GMT expires: - '-1' pragma: @@ -3864,43 +4100,54 @@ interactions: - 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 + body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureStorage", + "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-17T01:00:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-01-17T01:00:00.000Z"], "retentionDuration": + {"count": 25, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy create Connection: - keep-alive + Content-Length: + - '512' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --policy --name --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:35 GMT + - Sat, 16 Jan 2021 15:31:22 GMT expires: - '-1' pragma: @@ -3915,6 +4162,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -3928,30 +4177,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:37 GMT + - Sat, 16 Jan 2021 15:31:23 GMT expires: - '-1' pragma: @@ -3966,6 +4215,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3979,30 +4230,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"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-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1477' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:38 GMT + - Sat, 16 Jan 2021 15:31:24 GMT expires: - '-1' pragma: @@ -4017,6 +4268,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4030,30 +4283,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy set Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --policy -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:39 GMT + - Sat, 16 Jan 2021 15:31:24 GMT expires: - '-1' pragma: @@ -4068,43 +4321,54 @@ interactions: - 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 + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", + "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-17T01:00:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-01-17T01:00:00.000Z"], "retentionDuration": + {"count": 20, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy set Connection: - keep-alive + Content-Length: + - '512' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v --policy -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:40 GMT + - Sat, 16 Jan 2021 15:31:24 GMT expires: - '-1' pragma: @@ -4119,6 +4383,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: @@ -4132,30 +4398,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-17T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:41 GMT + - Sat, 16 Jan 2021 15:31:24 GMT expires: - '-1' pragma: @@ -4170,6 +4436,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -4183,30 +4451,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","name":"AzureFileShare;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:42 GMT + - Sat, 16 Jan 2021 15:31:25 GMT expires: - '-1' pragma: @@ -4221,6 +4489,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4234,30 +4504,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","name":"AzureFileShare;d55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:44 GMT + - Sat, 16 Jan 2021 15:31:26 GMT expires: - '-1' pragma: @@ -4272,6 +4542,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4285,49 +4557,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + 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%3Bd55916cefd208bdb346930abe4e1ca614e7605fc90bf01872b2056f7fb1ca52b?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 07:57:45 GMT + - Sat, 16 Jan 2021 15:31:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4336,21 +4608,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4359,7 +4631,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:46 GMT + - Sat, 16 Jan 2021 15:31:26 GMT expires: - '-1' pragma: @@ -4374,6 +4646,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -4387,21 +4661,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4410,7 +4684,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:48 GMT + - Sat, 16 Jan 2021 15:31:28 GMT expires: - '-1' pragma: @@ -4425,6 +4699,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4438,21 +4714,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4461,7 +4737,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:49 GMT + - Sat, 16 Jan 2021 15:31:29 GMT expires: - '-1' pragma: @@ -4476,6 +4752,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -4489,21 +4767,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4512,7 +4790,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:50 GMT + - Sat, 16 Jan 2021 15:31:30 GMT expires: - '-1' pragma: @@ -4527,6 +4805,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -4540,21 +4820,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4563,7 +4843,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:51 GMT + - Sat, 16 Jan 2021 15:31:31 GMT expires: - '-1' pragma: @@ -4578,6 +4858,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4591,21 +4873,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4614,7 +4896,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:52 GMT + - Sat, 16 Jan 2021 15:31:33 GMT expires: - '-1' pragma: @@ -4629,6 +4911,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -4642,21 +4926,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4665,7 +4949,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:54 GMT + - Sat, 16 Jan 2021 15:31:34 GMT expires: - '-1' pragma: @@ -4680,6 +4964,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4693,21 +4979,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4716,7 +5002,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:55 GMT + - Sat, 16 Jan 2021 15:31:36 GMT expires: - '-1' pragma: @@ -4731,6 +5017,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -4744,21 +5032,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4767,7 +5055,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:56 GMT + - Sat, 16 Jan 2021 15:31:37 GMT expires: - '-1' pragma: @@ -4782,6 +5070,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -4795,21 +5085,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4818,7 +5108,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:57 GMT + - Sat, 16 Jan 2021 15:31:38 GMT expires: - '-1' pragma: @@ -4833,6 +5123,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -4846,21 +5138,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4869,7 +5161,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:57:58 GMT + - Sat, 16 Jan 2021 15:31:40 GMT expires: - '-1' pragma: @@ -4884,6 +5176,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -4897,21 +5191,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4920,7 +5214,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:00 GMT + - Sat, 16 Jan 2021 15:31:41 GMT expires: - '-1' pragma: @@ -4935,6 +5229,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -4948,21 +5244,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4971,7 +5267,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:01 GMT + - Sat, 16 Jan 2021 15:31:42 GMT expires: - '-1' pragma: @@ -4986,6 +5282,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -4999,21 +5297,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5022,7 +5320,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:02 GMT + - Sat, 16 Jan 2021 15:31:43 GMT expires: - '-1' pragma: @@ -5037,6 +5335,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -5050,21 +5350,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5073,7 +5373,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:03 GMT + - Sat, 16 Jan 2021 15:31:44 GMT expires: - '-1' pragma: @@ -5088,6 +5388,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -5101,21 +5403,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5124,7 +5426,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:04 GMT + - Sat, 16 Jan 2021 15:31:45 GMT expires: - '-1' pragma: @@ -5139,6 +5441,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -5152,21 +5456,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"InProgress","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5175,7 +5479,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:05 GMT + - Sat, 16 Jan 2021 15:31:46 GMT expires: - '-1' pragma: @@ -5190,6 +5494,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -5203,30 +5509,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f80d7be7-7a3d-459b-acac-9b89db42718f?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f80d7be7-7a3d-459b-acac-9b89db42718f","name":"f80d7be7-7a3d-459b-acac-9b89db42718f","status":"Succeeded","startTime":"2021-01-16T15:31:27.0959786Z","endTime":"2021-01-16T15:31:27.0959786Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ab2737b2-45aa-46bc-adeb-f076d00dca69"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:07 GMT + - Sat, 16 Jan 2021 15:31:48 GMT expires: - '-1' pragma: @@ -5241,6 +5547,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -5254,36 +5562,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab2737b2-45aa-46bc-adeb-f076d00dca69?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab2737b2-45aa-46bc-adeb-f076d00dca69","name":"ab2737b2-45aa-46bc-adeb-f076d00dca69","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.6831348S","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-01-16T15:31:27.0959786Z","endTime":"2021-01-16T15:31:48.7791134Z","activityId":"e57600d2-580f-11eb-abd1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:08 GMT + - Sat, 16 Jan 2021 15:31: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: @@ -5292,6 +5602,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5305,30 +5617,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:09 GMT + - Sat, 16 Jan 2021 15:31:49 GMT expires: - '-1' pragma: @@ -5343,6 +5655,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5356,49 +5670,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 07:58:11 GMT + - Sat, 16 Jan 2021 15:31:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/45058f5f-a86e-4765-80e9-2f491d6c74eb?fabricName=Azure?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5407,49 +5721,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:12 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5458,49 +5774,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:13 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5509,49 +5827,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"InProgress","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:14 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5560,49 +5880,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a07a4632-2abb-4ddd-807b-55c6484fa8b8?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","name":"a07a4632-2abb-4ddd-807b-55c6484fa8b8","status":"Succeeded","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"2019-11-27T07:57:33.1105576Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f115264a-db3f-4c12-bf0a-d9d719942ce1"}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:15 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5611,52 +5933,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f115264a-db3f-4c12-bf0a-d9d719942ce1?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f115264a-db3f-4c12-bf0a-d9d719942ce1","name":"f115264a-db3f-4c12-bf0a-d9d719942ce1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.964372S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T07:57:33.1105576Z","endTime":"2019-11-27T07:58:16.0749296Z","activityId":"635842f4-10eb-11ea-9880-186024943d4f"}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '921' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:16 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5665,49 +5986,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --backup-management-type + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"value":[{"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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '752' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:16 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5716,111 +6039,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:17 GMT + - Sat, 16 Jan 2021 15:31: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureStorage", - "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T17:30:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T17:30:00.000Z"], "retentionDuration": - {"count": 25, "durationType": "Days"}}}, "timeZone": "UTC"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup policy create + - backup container unregister Connection: - keep-alive - Content-Length: - - '512' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy --name + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/clitestafspolicy?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '724' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:19 GMT + - Sat, 16 Jan 2021 15:32: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5829,49 +6145,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/clitestafspolicy?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '724' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:20 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5880,49 +6198,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --backup-management-type + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1477' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:20 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5931,111 +6251,528 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy set + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v --policy -n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/clitestafspolicy?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '724' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:21 GMT + - Sat, 16 Jan 2021 15:32: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", - "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T17:30:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T17:30:00.000Z"], "retentionDuration": - {"count": 20, "durationType": "Days"}}}, "timeZone": "UTC"}}' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '138' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '137' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '136' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32:08 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '135' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '134' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '133' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '132' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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 policy set + - backup container unregister Connection: - keep-alive - Content-Length: - - '512' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/clitestafspolicy?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '724' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:21 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6044,49 +6781,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/clitestafspolicy?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '724' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:22 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6095,49 +6834,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --query + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1230' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:22 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6146,49 +6887,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1230' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:23 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '127' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6197,44 +6940,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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%3Bclitest-item000004?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2019-05-13 + - https://management.azure.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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 07:58:25 GMT + - Sat, 16 Jan 2021 15:32: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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2019-05-13 + - https://management.azure.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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '126' x-powered-by: - ASP.NET status: @@ -6248,49 +6993,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:26 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '125' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6299,49 +7046,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:27 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '124' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6350,49 +7099,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:28 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '123' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6401,49 +7152,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:29 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6452,49 +7205,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:30 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6503,49 +7258,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:32 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6554,49 +7311,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:33 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6605,49 +7364,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:34 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '118' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6656,49 +7417,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:35 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6707,49 +7470,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:36 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '116' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6758,49 +7523,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:38 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '115' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6809,49 +7576,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:39 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '114' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6860,49 +7629,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:40 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '113' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6911,49 +7682,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:41 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '112' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6962,49 +7735,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:42 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '111' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7013,49 +7788,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:44 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '110' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7064,49 +7841,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:45 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '109' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7115,49 +7894,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"InProgress","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"0001-01-01T00:00:00"}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:46 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '108' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7166,49 +7947,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/db225590-f8f2-4d81-ac10-e73e10fe5cf5?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","name":"db225590-f8f2-4d81-ac10-e73e10fe5cf5","status":"Succeeded","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"2019-11-27T07:58:24.3936742Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2f8b591a-fa92-4f27-a559-090cae6b20a2"}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:47 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '107' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7217,51 +8000,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2f8b591a-fa92-4f27-a559-090cae6b20a2?api-version=2019-06-15 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2f8b591a-fa92-4f27-a559-090cae6b20a2","name":"2f8b591a-fa92-4f27-a559-090cae6b20a2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT23.3278418S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T07:58:24.3936742Z","endTime":"2019-11-27T07:58:47.721516Z","activityId":"af423940-10eb-11ea-b6e1-186024943d4f"}}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '881' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:47 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '106' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7276,43 +8059,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:48 GMT + - Sat, 16 Jan 2021 15:32: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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '105' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7324,41 +8109,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-12-01 + 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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: - string: '' + 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 07:58:49 GMT + - Sat, 16 Jan 2021 15:32:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/48ddb901-c454-4781-ad50-4a3b4e3ce959?fabricName=Azure?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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: + - '104' x-powered-by: - ASP.NET status: @@ -7378,18 +8165,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7397,11 +8184,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:50 GMT + - Sat, 16 Jan 2021 15:32:49 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7410,6 +8197,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -7429,18 +8218,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7448,11 +8237,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:51 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7461,6 +8250,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -7480,18 +8271,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7499,11 +8290,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:52 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7512,6 +8303,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -7531,18 +8324,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7550,11 +8343,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:53 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7563,6 +8356,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -7582,18 +8377,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7601,11 +8396,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:55 GMT + - Sat, 16 Jan 2021 15:32: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7614,6 +8409,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -7633,18 +8430,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7652,11 +8449,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:56 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7665,6 +8462,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -7684,18 +8483,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7703,11 +8502,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:57 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7716,6 +8515,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -7735,18 +8536,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7754,11 +8555,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:58 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7767,6 +8568,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -7786,18 +8589,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7805,11 +8608,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:58:59 GMT + - Sat, 16 Jan 2021 15:32: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7818,6 +8621,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -7837,18 +8642,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7856,11 +8661,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:01 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7869,6 +8674,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -7888,18 +8695,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7907,11 +8714,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:02 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7920,6 +8727,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -7939,18 +8748,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7958,11 +8767,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:03 GMT + - Sat, 16 Jan 2021 15:33: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -7971,6 +8780,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -7990,18 +8801,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8009,11 +8820,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:04 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8022,6 +8833,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -8041,18 +8854,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8060,11 +8873,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:05 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8073,6 +8886,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -8092,18 +8907,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8111,11 +8926,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:07 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8124,6 +8939,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -8143,18 +8960,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8162,11 +8979,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:08 GMT + - Sat, 16 Jan 2021 15:33:08 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8175,6 +8992,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -8194,18 +9013,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8213,11 +9032,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:09 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8226,6 +9045,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -8245,18 +9066,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8264,11 +9085,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:10 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8277,6 +9098,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -8296,18 +9119,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8315,11 +9138,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:11 GMT + - Sat, 16 Jan 2021 15:33:12 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8328,6 +9151,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -8347,18 +9172,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-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/48ddb901-c454-4781-ad50-4a3b4e3ce959?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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8366,11 +9191,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:13 GMT + - Sat, 16 Jan 2021 15:33: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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 pragma: - no-cache server: @@ -8379,6 +9204,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -8398,12 +9225,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/48ddb901-c454-4781-ad50-4a3b4e3ce959?api-version=2016-12-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/45058f5f-a86e-4765-80e9-2f491d6c74eb?api-version=2020-10-01 response: body: string: '' @@ -8413,7 +9240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 07:59:14 GMT + - Sat, 16 Jan 2021 15:33:15 GMT expires: - '-1' pragma: @@ -8422,6 +9249,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -8441,12 +9270,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8458,7 +9287,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:14 GMT + - Sat, 16 Jan 2021 15:34:55 GMT expires: - '-1' pragma: @@ -8473,6 +9302,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -8494,8 +9325,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -8509,7 +9340,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:18 GMT + - Sat, 16 Jan 2021 15:35:08 GMT expires: - '-1' pragma: @@ -8519,7 +9350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK 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 c2db1fad43c..15d97703d92 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,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T08%3A17%3A29.1962082Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-11T09%3A52%3A54.0168285Z''\"","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: - - '400' + - '484' content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:29 GMT + - Mon, 11 Jan 2021 09:52:53 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '207' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:50 GMT + - Mon, 11 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -98,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' status: code: 200 message: OK @@ -111,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Wed, 27 Nov 2019 08:17:50 GMT + - Mon, 11 Jan 2021 09:53:15 GMT x-ms-share-quota: - '1' x-ms-version: @@ -127,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:50 GMT + - Mon, 11 Jan 2021 09:53:16 GMT etag: - - '"0x8D773124B7DE53C"' + - '"0x8D8B616B7F250FB"' last-modified: - - Wed, 27 Nov 2019 08:17:50 GMT + - Mon, 11 Jan 2021 09:53:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -153,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -170,7 +167,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:51 GMT + - Mon, 11 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -185,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -193,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -211,17 +210,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -230,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:51 GMT + - Mon, 11 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -246,7 +245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' x-powered-by: - ASP.NET status: @@ -263,46 +262,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + string: '{"value":[]}' 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:17:53 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-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: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -317,37 +318,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '23869' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:17:53 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -359,35 +368,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:54 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-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: @@ -407,12 +422,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -422,17 +437,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:56 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-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: @@ -452,12 +469,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -467,17 +484,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:57 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-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: @@ -497,12 +516,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -512,17 +531,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:58 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-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: @@ -542,12 +563,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -557,17 +578,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:59 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-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: @@ -587,12 +610,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -602,17 +625,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:18:00 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 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: @@ -632,12 +657,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -647,17 +672,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:18:02 GMT + - Mon, 11 Jan 2021 09:53: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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -677,12 +704,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' @@ -692,17 +719,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:18:03 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -722,33 +751,39 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ccf5daed-2bcf-4717-aca1-2349fe271535?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 08:18:04 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -763,43 +798,35 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d0bd11ed-4438-4fd6-8e9a-4ea5af7faae1?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache - content-length: - - '12' - content-type: - - application/json date: - - Wed, 27 Nov 2019 08:18:04 GMT + - Mon, 11 Jan 2021 09:53: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: + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -814,24 +841,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rga4gb572375;clitestit3zfpinaq6hsyasa","name":"StorageContainer;Storage;clitest.rga4gb572375;clitestit3zfpinaq6hsyasa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestit3zfpinaq6hsyasa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga4gb572375/providers/Microsoft.Storage/storageAccounts/clitestit3zfpinaq6hsyasa"}},{"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;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","name":"StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgjjayztgdz3xm7unr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5urjhs4xm3/providers/Microsoft.Storage/storageAccounts/clitestgjjayztgdz3xm7unr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"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.rgjqluqqnhk6;clitestclnhc546p344yu7d6","name":"StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestclnhc546p344yu7d6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqluqqnhk6/providers/Microsoft.Storage/storageAccounts/clitestclnhc546p344yu7d6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","name":"StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqtpsymefcd7sld4t6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlcrm23nul/providers/Microsoft.Storage/storageAccounts/clitestqtpsymefcd7sld4t6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgphebleoee4;clitestljt4no4av6azpxct3","name":"StorageContainer;Storage;clitest.rgphebleoee4;clitestljt4no4av6azpxct3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestljt4no4av6azpxct3","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgphebleoee4/providers/Microsoft.Storage/storageAccounts/clitestljt4no4av6azpxct3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","name":"StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest35m75cuxsw23uzmpn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3lgndrdni/providers/Microsoft.Storage/storageAccounts/clitest35m75cuxsw23uzmpn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rguzzze3ew33;clitestscukb6vduhpsy3x2a","name":"StorageContainer;Storage;clitest.rguzzze3ew33;clitestscukb6vduhpsy3x2a","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestscukb6vduhpsy3x2a","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguzzze3ew33/providers/Microsoft.Storage/storageAccounts/clitestscukb6vduhpsy3x2a"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '6611' + - '28531' content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:04 GMT + - Mon, 11 Jan 2021 09:53:30 GMT expires: - '-1' pragma: @@ -846,14 +873,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -870,18 +899,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -889,11 +918,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:05 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -903,160 +932,7 @@ interactions: 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-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '1189' x-powered-by: - ASP.NET status: @@ -1076,18 +952,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1095,11 +971,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:10 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1108,6 +984,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1127,18 +1005,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1146,11 +1024,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:11 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1159,6 +1037,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -1178,18 +1058,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1197,11 +1077,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:12 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1210,6 +1090,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -1229,18 +1111,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1248,11 +1130,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:13 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1261,6 +1143,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -1280,18 +1164,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1299,11 +1183,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:15 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1312,6 +1196,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -1331,18 +1217,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1350,11 +1236,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:16 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1363,6 +1249,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -1382,18 +1270,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1401,11 +1289,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:17 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1414,6 +1302,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -1433,18 +1323,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1452,11 +1342,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:19 GMT + - Mon, 11 Jan 2021 09:53: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 pragma: - no-cache server: @@ -1465,6 +1355,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -1480,1828 +1372,49 @@ interactions: CommandName: - backup protection enable-for-azurefileshare Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/c6022e25-da13-4af4-b646-d3c110ce3e4c?api-version=2016-12-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' - headers: - cache-control: - - no-cache - content-length: - - '868' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15 - 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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '740' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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-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 - Content-Length: - - '0' - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18:49 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/02a45c9b-3be0-4208-9d10-7afa9fc1b220?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 08:18:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-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;clitest-item000004","name":"azurefileshare;clitest-item000004","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 - content-length: - - '959' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:18: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 + - keep-alive ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000004?api-version=2019-06-15 + 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/f1c872e2-d14d-4290-9885-92e0c8389bce?api-version=2020-10-01 response: body: - string: '' + 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"}}' 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;clitest-item000004/operationsStatus/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '790' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:18:57 GMT + - Mon, 11 Jan 2021 09:53: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/protectedItems/azurefileshare;clitest-item000004/operationResults/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.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' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3316,24 +1429,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:58 GMT + - Mon, 11 Jan 2021 09:53:42 GMT expires: - '-1' pragma: @@ -3348,6 +1461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3367,24 +1482,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 08:18:59 GMT + - Mon, 11 Jan 2021 09:53:43 GMT expires: - '-1' pragma: @@ -3399,6 +1514,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3415,46 +1532,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:19:00 GMT + - Mon, 11 Jan 2021 09:53: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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-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: + - '1196' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3469,43 +1586,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:01 GMT + - Mon, 11 Jan 2021 09:53: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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-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: + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3520,43 +1639,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:02 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-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: + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3571,43 +1692,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:04 GMT + - Mon, 11 Jan 2021 09:53: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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-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: + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3622,43 +1745,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:05 GMT + - Mon, 11 Jan 2021 09:53: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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-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: + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3673,43 +1798,37 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-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/9528e122-5211-42c4-90ec-ce023f97e952?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:19:06 GMT + - Mon, 11 Jan 2021 09:53: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: + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3724,24 +1843,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","name":"azurefileshare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","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 content-length: - - '188' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:07 GMT + - Mon, 11 Jan 2021 09:53:49 GMT expires: - '-1' pragma: @@ -3756,13 +1875,17 @@ interactions: - 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 + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -3772,46 +1895,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + 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%3B0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa/operationsStatus/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:19:08 GMT + - Mon, 11 Jan 2021 09:53: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/protectedItems/azurefileshare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa/operationResults/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-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: + - '1187' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3826,15 +1951,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3843,7 +1968,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:09 GMT + - Mon, 11 Jan 2021 09:53:51 GMT expires: - '-1' pragma: @@ -3858,6 +1983,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -3877,15 +2004,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3894,7 +2021,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:11 GMT + - Mon, 11 Jan 2021 09:53:52 GMT expires: - '-1' pragma: @@ -3909,6 +2036,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -3928,15 +2057,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3945,7 +2074,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:12 GMT + - Mon, 11 Jan 2021 09:53:53 GMT expires: - '-1' pragma: @@ -3960,6 +2089,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -3979,15 +2110,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3996,7 +2127,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:13 GMT + - Mon, 11 Jan 2021 09:53:54 GMT expires: - '-1' pragma: @@ -4011,6 +2142,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -4030,15 +2163,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4047,7 +2180,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:14 GMT + - Mon, 11 Jan 2021 09:53:55 GMT expires: - '-1' pragma: @@ -4062,6 +2195,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -4081,15 +2216,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4098,7 +2233,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:15 GMT + - Mon, 11 Jan 2021 09:53:56 GMT expires: - '-1' pragma: @@ -4113,6 +2248,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -4132,15 +2269,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4149,7 +2286,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:18 GMT + - Mon, 11 Jan 2021 09:53:58 GMT expires: - '-1' pragma: @@ -4164,6 +2301,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -4183,15 +2322,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4200,7 +2339,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:19 GMT + - Mon, 11 Jan 2021 09:53:59 GMT expires: - '-1' pragma: @@ -4215,6 +2354,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' x-powered-by: - ASP.NET status: @@ -4234,15 +2375,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4251,7 +2392,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:20 GMT + - Mon, 11 Jan 2021 09:54:01 GMT expires: - '-1' pragma: @@ -4266,6 +2407,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -4285,15 +2428,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4302,7 +2445,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:21 GMT + - Mon, 11 Jan 2021 09:54:02 GMT expires: - '-1' pragma: @@ -4317,6 +2460,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -4336,15 +2481,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4353,7 +2498,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:22 GMT + - Mon, 11 Jan 2021 09:54:03 GMT expires: - '-1' pragma: @@ -4368,6 +2513,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -4387,15 +2534,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4404,7 +2551,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:23 GMT + - Mon, 11 Jan 2021 09:54:04 GMT expires: - '-1' pragma: @@ -4419,6 +2566,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -4438,15 +2587,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4455,7 +2604,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:24 GMT + - Mon, 11 Jan 2021 09:54:06 GMT expires: - '-1' pragma: @@ -4470,6 +2619,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -4489,15 +2640,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4506,7 +2657,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:26 GMT + - Mon, 11 Jan 2021 09:54:07 GMT expires: - '-1' pragma: @@ -4521,6 +2672,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -4540,15 +2693,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4557,7 +2710,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:27 GMT + - Mon, 11 Jan 2021 09:54:09 GMT expires: - '-1' pragma: @@ -4572,6 +2725,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -4591,15 +2746,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4608,7 +2763,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:28 GMT + - Mon, 11 Jan 2021 09:54:10 GMT expires: - '-1' pragma: @@ -4623,6 +2778,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' x-powered-by: - ASP.NET status: @@ -4642,15 +2799,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4659,7 +2816,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:29 GMT + - Mon, 11 Jan 2021 09:54:11 GMT expires: - '-1' pragma: @@ -4674,6 +2831,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -4693,15 +2852,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4710,7 +2869,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:30 GMT + - Mon, 11 Jan 2021 09:54:12 GMT expires: - '-1' pragma: @@ -4725,6 +2884,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' x-powered-by: - ASP.NET status: @@ -4744,15 +2905,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4761,7 +2922,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:32 GMT + - Mon, 11 Jan 2021 09:54:13 GMT expires: - '-1' pragma: @@ -4776,6 +2937,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -4795,15 +2958,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4812,7 +2975,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:33 GMT + - Mon, 11 Jan 2021 09:54:15 GMT expires: - '-1' pragma: @@ -4827,6 +2990,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -4846,15 +3011,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4863,7 +3028,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:34 GMT + - Mon, 11 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -4878,6 +3043,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -4897,15 +3064,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4914,7 +3081,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:35 GMT + - Mon, 11 Jan 2021 09:54:18 GMT expires: - '-1' pragma: @@ -4929,6 +3096,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -4948,15 +3117,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4965,7 +3134,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:36 GMT + - Mon, 11 Jan 2021 09:54:19 GMT expires: - '-1' pragma: @@ -4980,6 +3149,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -4999,15 +3170,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5016,7 +3187,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:37 GMT + - Mon, 11 Jan 2021 09:54:20 GMT expires: - '-1' pragma: @@ -5031,6 +3202,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -5050,15 +3223,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5067,7 +3240,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:39 GMT + - Mon, 11 Jan 2021 09:54:21 GMT expires: - '-1' pragma: @@ -5082,6 +3255,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -5101,15 +3276,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"InProgress","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5118,7 +3293,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:40 GMT + - Mon, 11 Jan 2021 09:54:23 GMT expires: - '-1' pragma: @@ -5133,6 +3308,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -5152,24 +3329,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dad92ff4-2ae0-405b-b407-40d2cf18ceb0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","name":"dad92ff4-2ae0-405b-b407-40d2cf18ceb0","status":"Succeeded","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"2019-11-27T08:18:58.1372407Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9b164b61-187f-4ad8-84fd-3930a6e8c0f1"}}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:41 GMT + - Mon, 11 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -5184,6 +3361,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -5203,33 +3382,30 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9b164b61-187f-4ad8-84fd-3930a6e8c0f1?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b164b61-187f-4ad8-84fd-3930a6e8c0f1","name":"9b164b61-187f-4ad8-84fd-3930a6e8c0f1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.6280887S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:18:58.1372407Z","endTime":"2019-11-27T08:19:40.7653294Z","activityId":"684fe5dc-10ee-11ea-895e-186024943d4f"}}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '922' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:41 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -5238,6 +3414,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -5251,30 +3429,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:42 GMT + - Mon, 11 Jan 2021 09:54:26 GMT expires: - '-1' pragma: @@ -5289,6 +3467,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -5302,30 +3482,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:42 GMT + - Mon, 11 Jan 2021 09:54:27 GMT expires: - '-1' pragma: @@ -5340,66 +3520,66 @@ interactions: - 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: 'b''b\''{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", - "policyId": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": - "ProtectionStopped"}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' 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;clitest-item000004/operationsStatus/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:19:43 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.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' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5408,21 +3588,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5431,7 +3611,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:43 GMT + - Mon, 11 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -5446,6 +3626,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' x-powered-by: - ASP.NET status: @@ -5459,21 +3641,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5482,7 +3664,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:44 GMT + - Mon, 11 Jan 2021 09:54:31 GMT expires: - '-1' pragma: @@ -5497,6 +3679,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -5510,21 +3694,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"InProgress","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5533,7 +3717,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:45 GMT + - Mon, 11 Jan 2021 09:54:33 GMT expires: - '-1' pragma: @@ -5548,6 +3732,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '20' x-powered-by: - ASP.NET status: @@ -5561,30 +3747,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/72ff3843-38b8-4896-832c-5a91156a64b5?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"72ff3843-38b8-4896-832c-5a91156a64b5","name":"72ff3843-38b8-4896-832c-5a91156a64b5","status":"Succeeded","startTime":"2021-01-11T09:53:50.9215387Z","endTime":"2021-01-11T09:53:50.9215387Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a689a5a3-8fcd-4877-a28a-ab82634351f3"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:47 GMT + - Mon, 11 Jan 2021 09:54:34 GMT expires: - '-1' pragma: @@ -5599,6 +3785,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -5612,36 +3800,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a689a5a3-8fcd-4877-a28a-ab82634351f3?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a689a5a3-8fcd-4877-a28a-ab82634351f3","name":"a689a5a3-8fcd-4877-a28a-ab82634351f3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.5060994S","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-01-11T09:53:50.9215387Z","endTime":"2021-01-11T09:54:33.4276381Z","activityId":"d4b75429-53f2-11eb-80d2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:48 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -5650,6 +3841,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -5663,30 +3856,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v -c --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","name":"AzureFileShare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:49 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -5701,6 +3894,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -5720,24 +3915,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","name":"AzureFileShare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:50 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -5752,13 +3947,17 @@ interactions: - 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 + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", + "policyId": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": + "ProtectionStopped"}}' headers: Accept: - application/json @@ -5768,46 +3967,48 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + 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%3B0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa/operationsStatus/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:19:51 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/AzureFileShare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa/operationResults/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-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: + - '1192' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5822,15 +4023,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5839,7 +4040,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:52 GMT + - Mon, 11 Jan 2021 09:54:37 GMT expires: - '-1' pragma: @@ -5854,6 +4055,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -5873,15 +4076,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5890,7 +4093,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:54 GMT + - Mon, 11 Jan 2021 09:54:38 GMT expires: - '-1' pragma: @@ -5905,6 +4108,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -5924,15 +4129,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5941,7 +4146,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:55 GMT + - Mon, 11 Jan 2021 09:54:39 GMT expires: - '-1' pragma: @@ -5956,6 +4161,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -5975,15 +4182,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5992,7 +4199,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:56 GMT + - Mon, 11 Jan 2021 09:54:40 GMT expires: - '-1' pragma: @@ -6007,6 +4214,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6026,15 +4235,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6043,7 +4252,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:57 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' pragma: @@ -6058,6 +4267,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6077,15 +4288,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6094,7 +4305,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:19:58 GMT + - Mon, 11 Jan 2021 09:54:43 GMT expires: - '-1' pragma: @@ -6109,6 +4320,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6128,15 +4341,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6145,7 +4358,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:00 GMT + - Mon, 11 Jan 2021 09:54:44 GMT expires: - '-1' pragma: @@ -6160,6 +4373,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6179,15 +4394,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6196,7 +4411,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:01 GMT + - Mon, 11 Jan 2021 09:54:46 GMT expires: - '-1' pragma: @@ -6211,6 +4426,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6230,15 +4447,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6247,7 +4464,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:02 GMT + - Mon, 11 Jan 2021 09:54:47 GMT expires: - '-1' pragma: @@ -6262,6 +4479,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -6281,15 +4500,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"InProgress","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6298,7 +4517,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:03 GMT + - Mon, 11 Jan 2021 09:54:48 GMT expires: - '-1' pragma: @@ -6313,6 +4532,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -6332,24 +4553,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/02bea0cf-bf21-4c3d-a01d-0947a81e7c93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","name":"02bea0cf-bf21-4c3d-a01d-0947a81e7c93","status":"Succeeded","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"2019-11-27T08:19:43.7315249Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"216aab81-3821-41fe-98cc-664143d22587"}}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:05 GMT + - Mon, 11 Jan 2021 09:54:49 GMT expires: - '-1' pragma: @@ -6364,6 +4585,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -6383,32 +4606,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/216aab81-3821-41fe-98cc-664143d22587?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/216aab81-3821-41fe-98cc-664143d22587","name":"216aab81-3821-41fe-98cc-664143d22587","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0536252S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2019-11-27T08:19:43.7315249Z","endTime":"2019-11-27T08:20:04.7851501Z","activityId":"a9f6c8c0-10ee-11ea-a3ad-186024943d4f"}}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '879' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:06 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6417,6 +4638,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -6430,30 +4653,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1028' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:06 GMT + - Mon, 11 Jan 2021 09:54:52 GMT expires: - '-1' pragma: @@ -6468,6 +4691,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -6485,26 +4710,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1028' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:07 GMT + - Mon, 11 Jan 2021 09:54:53 GMT expires: - '-1' pragma: @@ -6519,6 +4744,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -6535,46 +4762,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:20:07 GMT + - Mon, 11 Jan 2021 09:54: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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6587,17 +4816,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"InProgress","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6606,7 +4835,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:07 GMT + - Mon, 11 Jan 2021 09:54:56 GMT expires: - '-1' pragma: @@ -6621,6 +4850,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -6638,26 +4869,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0a1a182d-6501-4b29-b5da-bb02883624cc?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0a1a182d-6501-4b29-b5da-bb02883624cc","name":"0a1a182d-6501-4b29-b5da-bb02883624cc","status":"Succeeded","startTime":"2021-01-11T09:54:36.6664999Z","endTime":"2021-01-11T09:54:36.6664999Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6673c85-f16a-416d-89d0-22924190fb40"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:08 GMT + - Mon, 11 Jan 2021 09:54:58 GMT expires: - '-1' pragma: @@ -6672,6 +4903,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -6689,32 +4922,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6673c85-f16a-416d-89d0-22924190fb40?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6673c85-f16a-416d-89d0-22924190fb40","name":"c6673c85-f16a-416d-89d0-22924190fb40","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2488877S","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-01-11T09:54:36.6664999Z","endTime":"2021-01-11T09:54:57.9153876Z","activityId":"02fd2809-53f3-11eb-848d-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '903' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:09 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6723,6 +4958,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6736,30 +4973,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","name":"AzureFileShare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1125' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:11 GMT + - Mon, 11 Jan 2021 09:54:58 GMT expires: - '-1' pragma: @@ -6774,6 +5011,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6793,24 +5032,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + 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;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","name":"AzureFileShare;0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1125' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:12 GMT + - Mon, 11 Jan 2021 09:54:58 GMT expires: - '-1' pragma: @@ -6825,6 +5064,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6841,46 +5082,46 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + 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%3B0b608a6366a9ad21d922f43932dc0f01af2362f0ce1c61a49d1d412d9a7aa0aa?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:20:13 GMT + - Mon, 11 Jan 2021 09:54:59 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-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-deletes: + - '14997' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6895,15 +5136,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6912,7 +5153,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:14 GMT + - Mon, 11 Jan 2021 09:55:00 GMT expires: - '-1' pragma: @@ -6927,6 +5168,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -6946,15 +5189,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6963,7 +5206,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:16 GMT + - Mon, 11 Jan 2021 09:55:02 GMT expires: - '-1' pragma: @@ -6978,6 +5221,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -6997,15 +5242,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7014,7 +5259,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:17 GMT + - Mon, 11 Jan 2021 09:55:03 GMT expires: - '-1' pragma: @@ -7029,6 +5274,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -7048,15 +5295,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7065,7 +5312,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:19 GMT + - Mon, 11 Jan 2021 09:55:04 GMT expires: - '-1' pragma: @@ -7080,6 +5327,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -7099,15 +5348,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7116,7 +5365,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:20 GMT + - Mon, 11 Jan 2021 09:55:05 GMT expires: - '-1' pragma: @@ -7131,6 +5380,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -7150,15 +5401,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7167,7 +5418,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:21 GMT + - Mon, 11 Jan 2021 09:55:07 GMT expires: - '-1' pragma: @@ -7182,6 +5433,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -7201,15 +5454,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7218,7 +5471,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:22 GMT + - Mon, 11 Jan 2021 09:55:08 GMT expires: - '-1' pragma: @@ -7233,6 +5486,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -7252,15 +5507,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7269,7 +5524,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:23 GMT + - Mon, 11 Jan 2021 09:55:10 GMT expires: - '-1' pragma: @@ -7284,6 +5539,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -7303,15 +5560,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7320,7 +5577,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:25 GMT + - Mon, 11 Jan 2021 09:55:11 GMT expires: - '-1' pragma: @@ -7335,6 +5592,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -7354,15 +5613,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7371,7 +5630,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:26 GMT + - Mon, 11 Jan 2021 09:55:13 GMT expires: - '-1' pragma: @@ -7386,6 +5645,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -7405,15 +5666,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7422,7 +5683,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:27 GMT + - Mon, 11 Jan 2021 09:55:14 GMT expires: - '-1' pragma: @@ -7437,6 +5698,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -7456,15 +5719,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"InProgress","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7473,7 +5736,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:28 GMT + - Mon, 11 Jan 2021 09:55:15 GMT expires: - '-1' pragma: @@ -7488,6 +5751,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -7507,24 +5772,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/8f44acf7-4ca6-428b-b861-c643d727449b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"8f44acf7-4ca6-428b-b861-c643d727449b","name":"8f44acf7-4ca6-428b-b861-c643d727449b","status":"Succeeded","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"2019-11-27T08:20:07.5486925Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"326dc1ea-f695-4f7e-9f4d-2491a3202dce"}}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:29 GMT + - Mon, 11 Jan 2021 09:55:17 GMT expires: - '-1' pragma: @@ -7539,6 +5804,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -7558,32 +5825,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/326dc1ea-f695-4f7e-9f4d-2491a3202dce?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/326dc1ea-f695-4f7e-9f4d-2491a3202dce","name":"326dc1ea-f695-4f7e-9f4d-2491a3202dce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.5119783S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:20:07.5486925Z","endTime":"2019-11-27T08:20:29.0606708Z","activityId":"b826e54a-10ee-11ea-a012-186024943d4f"}}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '882' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:29 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -7592,6 +5857,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -7605,30 +5872,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"InProgress","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:30 GMT + - Mon, 11 Jan 2021 09:55:20 GMT expires: - '-1' pragma: @@ -7643,6 +5910,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -7656,30 +5925,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d0fd4e97-91d3-49ed-8569-8e2b6b939102?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + string: '{"id":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","name":"d0fd4e97-91d3-49ed-8569-8e2b6b939102","status":"Succeeded","startTime":"2021-01-11T09:55:00.2433801Z","endTime":"2021-01-11T09:55:00.2433801Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d17a707c-e48c-4030-88b6-40d41d1f2d67"}}' headers: cache-control: - no-cache content-length: - - '880' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:31 GMT + - Mon, 11 Jan 2021 09:55:21 GMT expires: - '-1' pragma: @@ -7694,6 +5963,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -7707,49 +5978,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d17a707c-e48c-4030-88b6-40d41d1f2d67?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d17a707c-e48c-4030-88b6-40d41d1f2d67","name":"d17a707c-e48c-4030-88b6-40d41d1f2d67","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2527108S","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-01-11T09:55:00.2433801Z","endTime":"2021-01-11T09:55:21.4960909Z","activityId":"10fb141c-53f3-11eb-9be3-c8f750f92764"}}' 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '906' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:20:30 GMT + - Mon, 11 Jan 2021 09:55:21 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?fabricName=Azure?api-version=2016-12-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-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7758,49 +6033,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{}' + string: '{"value":[]}' 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:31 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7815,43 +6092,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:32 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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: + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7863,41 +6142,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{}' + 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:20:33 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/8b7af9d2-8488-40fc-b96b-0fb26202728a?fabricName=Azure?api-version=2020-10-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: + - '14998' x-powered-by: - ASP.NET status: @@ -7917,18 +6196,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7936,11 +6215,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:34 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -7949,6 +6228,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -7968,18 +6249,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7987,11 +6268,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:36 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8000,6 +6281,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -8019,18 +6302,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8038,11 +6321,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:37 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8051,6 +6334,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -8070,18 +6355,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8089,11 +6374,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:39 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8102,6 +6387,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -8121,18 +6408,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8140,11 +6427,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:40 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8153,6 +6440,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -8172,18 +6461,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8191,11 +6480,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:41 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8204,6 +6493,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -8223,18 +6514,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8242,11 +6533,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:42 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8255,6 +6546,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -8274,18 +6567,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8293,11 +6586,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:44 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8306,6 +6599,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -8325,18 +6620,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8344,11 +6639,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:45 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8357,6 +6652,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -8376,18 +6673,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8395,11 +6692,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:46 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8408,6 +6705,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -8427,18 +6726,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8446,11 +6745,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:47 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8459,6 +6758,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -8478,18 +6779,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8497,11 +6798,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:48 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8510,6 +6811,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -8529,18 +6832,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8548,11 +6851,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:50 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8561,6 +6864,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -8580,18 +6885,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8599,11 +6904,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:51 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8612,6 +6917,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -8631,18 +6938,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8650,11 +6957,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:52 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8663,6 +6970,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -8682,18 +6991,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8701,11 +7010,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:53 GMT + - Mon, 11 Jan 2021 09:55: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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8714,6 +7023,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -8733,18 +7044,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8752,11 +7063,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:54 GMT + - Mon, 11 Jan 2021 09:55: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/operationResults/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 pragma: - no-cache server: @@ -8765,6 +7076,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -8784,12 +7097,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fb8c4dfc-827e-43e6-90f8-510c0a9a5154?api-version=2016-12-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/8b7af9d2-8488-40fc-b96b-0fb26202728a?api-version=2020-10-01 response: body: string: '' @@ -8799,7 +7112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:20:55 GMT + - Mon, 11 Jan 2021 09:55:46 GMT expires: - '-1' pragma: @@ -8808,6 +7121,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -8827,12 +7142,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8844,7 +7159,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:20:56 GMT + - Mon, 11 Jan 2021 09:57:27 GMT expires: - '-1' pragma: @@ -8859,6 +7174,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -8880,8 +7197,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -8895,7 +7212,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:21:00 GMT + - Mon, 11 Jan 2021 09:57:30 GMT expires: - '-1' pragma: @@ -8905,7 +7222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '7' status: code: 200 message: OK 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 a63da460cab..d478bafd2d5 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-03-11T06%3A37%3A47.672431Z''\"","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-01-11T09%3A52%3A53.8796971Z''\"","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: - - '483' + - '484' content-type: - application/json date: - - Wed, 11 Mar 2020 06:37:49 GMT + - Mon, 11 Jan 2021 09:52:54 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '207' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - --resource-group --account-name --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:20 GMT + - Mon, 11 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -99,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11997' status: code: 200 message: OK @@ -119,10 +116,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -136,7 +130,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:22 GMT + - Mon, 11 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -152,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' status: code: 200 message: OK @@ -164,9 +158,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.2.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Wed, 11 Mar 2020 06:38:22 GMT + - Mon, 11 Jan 2021 09:53:16 GMT x-ms-share-quota: - '1' x-ms-version: @@ -180,11 +174,11 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:22 GMT + - Mon, 11 Jan 2021 09:53:16 GMT etag: - - '"0x8D7C586CBE26903"' + - '"0x8D8B616B82E4EE3"' last-modified: - - Wed, 11 Mar 2020 06:38:23 GMT + - Mon, 11 Jan 2021 09:53:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -200,11 +194,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.2.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-content-length: - '0' x-ms-date: - - Wed, 11 Mar 2020 06:38:23 GMT + - Mon, 11 Jan 2021 09:53:17 GMT x-ms-type: - file x-ms-version: @@ -218,11 +212,11 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:23 GMT + - Mon, 11 Jan 2021 09:53:16 GMT etag: - - '"0x8D7C586CC4220C4"' + - '"0x8D8B616B8795B2B"' last-modified: - - Wed, 11 Mar 2020 06:38:23 GMT + - Mon, 11 Jan 2021 09:53:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -240,11 +234,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.2.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-content-length: - '0' x-ms-date: - - Wed, 11 Mar 2020 06:38:24 GMT + - Mon, 11 Jan 2021 09:53:17 GMT x-ms-type: - file x-ms-version: @@ -258,11 +252,11 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:24 GMT + - Mon, 11 Jan 2021 09:53:17 GMT etag: - - '"0x8D7C586CC970652"' + - '"0x8D8B616B8A9EA1A"' last-modified: - - Wed, 11 Mar 2020 06:38:24 GMT + - Mon, 11 Jan 2021 09:53:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -286,15 +280,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-03-11T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-03-11T16:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -303,7 +297,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:26 GMT + - Mon, 11 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -318,6 +312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -326,9 +322,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-03-11T16:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-03-11T16:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -346,15 +342,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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-item000008?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-03-11T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-03-11T16:30: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-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -363,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:29 GMT + - Mon, 11 Jan 2021 09:53:19 GMT expires: - '-1' pragma: @@ -379,7 +375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' x-powered-by: - ASP.NET status: @@ -396,46 +392,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + string: '{"value":[]}' 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:38:32 GMT + - Mon, 11 Jan 2021 09:53: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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-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: - - '1195' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -450,37 +448,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '23869' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:38:34 GMT + - Mon, 11 Jan 2021 09:53: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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -492,35 +498,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:35 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-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: @@ -540,12 +552,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: string: '' @@ -555,17 +567,19 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:37 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -585,12 +599,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: string: '' @@ -600,17 +614,19 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:39 GMT + - Mon, 11 Jan 2021 09:53: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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -630,12 +646,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: string: '' @@ -645,17 +661,19 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:40 GMT + - Mon, 11 Jan 2021 09:53: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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -675,12 +693,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: string: '' @@ -690,17 +708,19 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:38:42 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -720,33 +740,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d9c9d42a-a70f-46f3-8958-447c3da50e05?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 11 Mar 2020 06:38:44 GMT + - Mon, 11 Jan 2021 09:53: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/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -761,43 +787,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache content-length: - - '12' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:38:44 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-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: + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -812,46 +834,41 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '3721' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:38:46 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-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: + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + body: null headers: Accept: - application/json @@ -861,47 +878,37 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01 + 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/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: - string: '{}' + 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:38:48 GMT + - Mon, 11 Jan 2021 09:53: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-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-writes: - - '1192' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -921,38 +928,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: - string: '{}' + 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:38:50 GMT + - Mon, 11 Jan 2021 09:53: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-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: + - '129' x-powered-by: - ASP.NET status: @@ -972,43 +975,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/ace49c7c-673a-4851-8b81-4ed9a01edf5c?api-version=2020-10-01 response: body: - string: '{}' + 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' - content-type: - - application/json date: - - Wed, 11 Mar 2020 06:38:51 GMT + - Mon, 11 Jan 2021 09:53: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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: + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -1023,45 +1018,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"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.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","name":"StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestclnhc546p344yu7d6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqluqqnhk6/providers/Microsoft.Storage/storageAccounts/clitestclnhc546p344yu7d6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '24646' content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:53 GMT + - Mon, 11 Jan 2021 09:53: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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: + - '146' 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 @@ -1071,21 +1069,25 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-01 + 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=2020-10-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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1093,11 +1095,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:55 GMT + - Mon, 11 Jan 2021 09:54: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 pragma: - no-cache server: @@ -1106,6 +1108,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1125,18 +1129,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1144,11 +1148,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:56 GMT + - Mon, 11 Jan 2021 09:54: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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 pragma: - no-cache server: @@ -1157,6 +1161,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1176,18 +1182,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1195,11 +1201,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:58 GMT + - Mon, 11 Jan 2021 09:54: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 pragma: - no-cache server: @@ -1208,6 +1214,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1227,43 +1235,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fe9a3f9f-c014-40fd-92f0-aaf4f5804c0c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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"}}' + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:38:59 GMT + - Mon, 11 Jan 2021 09:54: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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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: + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1278,43 +1288,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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-item000008?api-version=2019-06-15 + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-03-11T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-03-11T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:02 GMT + - Mon, 11 Jan 2021 09:54: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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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: + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1329,43 +1341,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 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;clitest-item000007","name":"azurefileshare;clitest-item000007","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-item000007","protectionState":"NotProtected"}}]}' + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '959' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:03 GMT + - Mon, 11 Jan 2021 09:54: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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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: + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1380,47 +1394,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 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;clitest-item000007","name":"azurefileshare;clitest-item000007","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-item000007","protectionState":"NotProtected"}}]}' + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '959' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:05 GMT + - Mon, 11 Jan 2021 09:54: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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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: + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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-item000008", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json @@ -1430,43 +1444,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000007?api-version=2019-06-15 + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 response: body: - string: '' + 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;clitest-item000007/operationsStatus/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2019-06-15 + - https://management.azure.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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:39:07 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/azurefileshare;clitest-item000007/operationResults/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2019-06-15 + - https://management.azure.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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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-writes: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1486,43 +1500,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:09 GMT + - Mon, 11 Jan 2021 09:54: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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-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: + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1537,24 +1553,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/fb166093-6ba0-4e03-bb23-5c9bedfb4b4a?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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"}}' headers: cache-control: - no-cache content-length: - - '188' + - '790' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:10 GMT + - Mon, 11 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -1569,6 +1585,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1588,24 +1606,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:12 GMT + - Mon, 11 Jan 2021 09:54:31 GMT expires: - '-1' pragma: @@ -1620,6 +1638,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1639,24 +1659,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:14 GMT + - Mon, 11 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -1671,6 +1691,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1687,46 +1709,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:39:15 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '1194' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1741,43 +1763,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:17 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1792,43 +1816,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:18 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1843,43 +1869,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:20 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1894,43 +1922,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:22 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1945,43 +1975,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:24 GMT + - Mon, 11 Jan 2021 09:54: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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-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: + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1996,43 +2028,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-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/e4b409b3-0eda-4d67-89d8-7457a4062110?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:39:26 GMT + - Mon, 11 Jan 2021 09: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: + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -2047,24 +2073,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"azurefileshare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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-item000007","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1039' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:27 GMT + - Mon, 11 Jan 2021 09:54:40 GMT expires: - '-1' pragma: @@ -2079,13 +2105,17 @@ interactions: - 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 + body: '{"properties": {"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-item000008", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -2095,46 +2125,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + 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%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:39:29 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/azurefileshare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-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: + - '1185' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2149,15 +2181,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2166,7 +2198,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:30 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' pragma: @@ -2181,6 +2213,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -2200,15 +2234,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2217,7 +2251,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:32 GMT + - Mon, 11 Jan 2021 09:54:42 GMT expires: - '-1' pragma: @@ -2232,6 +2266,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -2251,15 +2287,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2268,7 +2304,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:34 GMT + - Mon, 11 Jan 2021 09:54:44 GMT expires: - '-1' pragma: @@ -2283,6 +2319,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -2302,15 +2340,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2319,7 +2357,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:35 GMT + - Mon, 11 Jan 2021 09:54:45 GMT expires: - '-1' pragma: @@ -2334,6 +2372,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -2353,15 +2393,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2370,7 +2410,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:37 GMT + - Mon, 11 Jan 2021 09:54:46 GMT expires: - '-1' pragma: @@ -2385,6 +2425,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -2404,15 +2446,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2421,7 +2463,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:38 GMT + - Mon, 11 Jan 2021 09:54:47 GMT expires: - '-1' pragma: @@ -2436,6 +2478,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -2455,15 +2499,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2472,7 +2516,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:40 GMT + - Mon, 11 Jan 2021 09:54:49 GMT expires: - '-1' pragma: @@ -2487,6 +2531,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -2506,15 +2552,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2523,7 +2569,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:42 GMT + - Mon, 11 Jan 2021 09:54:51 GMT expires: - '-1' pragma: @@ -2538,6 +2584,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -2557,15 +2605,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2574,7 +2622,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:43 GMT + - Mon, 11 Jan 2021 09:54:52 GMT expires: - '-1' pragma: @@ -2589,6 +2637,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -2608,15 +2658,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2625,7 +2675,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:45 GMT + - Mon, 11 Jan 2021 09:54:53 GMT expires: - '-1' pragma: @@ -2640,6 +2690,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -2659,15 +2711,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2676,7 +2728,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:46 GMT + - Mon, 11 Jan 2021 09:54:54 GMT expires: - '-1' pragma: @@ -2691,6 +2743,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -2710,15 +2764,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2727,7 +2781,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:48 GMT + - Mon, 11 Jan 2021 09:54:55 GMT expires: - '-1' pragma: @@ -2742,6 +2796,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -2761,15 +2817,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"InProgress","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2778,7 +2834,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:49 GMT + - Mon, 11 Jan 2021 09:54:56 GMT expires: - '-1' pragma: @@ -2793,6 +2849,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -2812,24 +2870,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7cac994c-e07b-43ac-a52d-82a51f4a9b6c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","name":"7cac994c-e07b-43ac-a52d-82a51f4a9b6c","status":"Succeeded","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"2020-03-11T06:39:07.4675784Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a3ff839c-9677-477a-bd63-5c508a4dc31a"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:51 GMT + - Mon, 11 Jan 2021 09:54:58 GMT expires: - '-1' pragma: @@ -2844,6 +2902,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -2863,33 +2923,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a3ff839c-9677-477a-bd63-5c508a4dc31a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a3ff839c-9677-477a-bd63-5c508a4dc31a","name":"a3ff839c-9677-477a-bd63-5c508a4dc31a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.4563746S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000007","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000008"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2020-03-11T06:39:07.4675784Z","endTime":"2020-03-11T06:39:50.923953Z","activityId":"eb9e9864-6362-11ea-9e7d-186024943d4f"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '921' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:52 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -2898,6 +2955,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -2911,30 +2970,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 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;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","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-item000008"}}]}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:55 GMT + - Mon, 11 Jan 2021 09:55:01 GMT expires: - '-1' pragma: @@ -2949,65 +3008,66 @@ interactions: - 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: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2020-04-10T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/backup?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' 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;clitest-item000007/operationsStatus/b0b67137-a4af-4392-a108-35ea1cbf417e?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:39:58 GMT + - Mon, 11 Jan 2021 09:55: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/b0b67137-a4af-4392-a108-35ea1cbf417e?api-version=2016-12-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: - - '1163' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3016,30 +3076,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b0b67137-a4af-4392-a108-35ea1cbf417e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"b0b67137-a4af-4392-a108-35ea1cbf417e","name":"b0b67137-a4af-4392-a108-35ea1cbf417e","status":"Succeeded","startTime":"2020-03-11T06:39:58.2696712Z","endTime":"2020-03-11T06:39:58.2696712Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"05c3cd8b-cf1e-427c-b827-e5c94276572a"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:39:59 GMT + - Mon, 11 Jan 2021 09:55:03 GMT expires: - '-1' pragma: @@ -3054,6 +3114,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -3067,39 +3129,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/05c3cd8b-cf1e-427c-b827-e5c94276572a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05c3cd8b-cf1e-427c-b827-e5c94276572a","name":"05c3cd8b-cf1e-427c-b827-e5c94276572a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.8717266S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2020-03-11T06:39:58.2696712Z","activityId":"1d2e233e-6363-11ea-81b9-186024943d4f"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '913' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:01 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -3108,6 +3167,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -3121,39 +3182,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/05c3cd8b-cf1e-427c-b827-e5c94276572a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05c3cd8b-cf1e-427c-b827-e5c94276572a","name":"05c3cd8b-cf1e-427c-b827-e5c94276572a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.5280805S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2020-03-11T06:39:58.2696712Z","activityId":"1d2e233e-6363-11ea-81b9-186024943d4f"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '913' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:02 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -3162,6 +3220,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' x-powered-by: - ASP.NET status: @@ -3175,39 +3235,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/05c3cd8b-cf1e-427c-b827-e5c94276572a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/05c3cd8b-cf1e-427c-b827-e5c94276572a","name":"05c3cd8b-cf1e-427c-b827-e5c94276572a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.0565253S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2020-03-11T06:39:58.2696712Z","endTime":"2020-03-11T06:40:01.3261965Z","activityId":"1d2e233e-6363-11ea-81b9-186024943d4f"}}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '952' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:03 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -3216,6 +3273,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -3229,38 +3288,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account show-connection-string + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2019-06-01&$expand=kerb + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '288' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:35 GMT + - Mon, 11 Jan 2021 09:55:09 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3270,46 +3327,1711 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '22' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '21' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '20' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '19' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '18' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '17' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '16' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '15' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '14' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '13' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"InProgress","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '12' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/5ae13ce9-464c-49c3-a7a9-53168ae118c3?api-version=2020-10-01 + response: + body: + string: '{"id":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","name":"5ae13ce9-464c-49c3-a7a9-53168ae118c3","status":"Succeeded","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"2021-01-11T09:54:41.4230488Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"78521732-19b1-4463-80c7-52cc1d37da02"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '11' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/78521732-19b1-4463-80c7-52cc1d37da02?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/78521732-19b1-4463-80c7-52cc1d37da02","name":"78521732-19b1-4463-80c7-52cc1d37da02","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.2818163S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000008"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-11T09:54:41.4230488Z","endTime":"2021-01-11T09:55:23.7048651Z","activityId":"d5709370-53f2-11eb-881e-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '946' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '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: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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=2020-10-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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000007","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-item000008"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1327' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-10T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/backup?api-version=2020-10-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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/e8a59405-73d2-4a50-9ebe-4f8a971c188c?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 11 Jan 2021 09:55: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/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/e8a59405-73d2-4a50-9ebe-4f8a971c188c?api-version=2020-10-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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/e8a59405-73d2-4a50-9ebe-4f8a971c188c?api-version=2020-10-01 + response: + body: + string: '{"id":"e8a59405-73d2-4a50-9ebe-4f8a971c188c","name":"e8a59405-73d2-4a50-9ebe-4f8a971c188c","status":"Succeeded","startTime":"2021-01-11T09:55:26.3054631Z","endTime":"2021-01-11T09:55:26.3054631Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"cfae9189-89bb-4e99-8b64-07c10c697540"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -i -c --backup-management-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/cfae9189-89bb-4e99-8b64-07c10c697540?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cfae9189-89bb-4e99-8b64-07c10c697540","name":"cfae9189-89bb-4e99-8b64-07c10c697540","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.1215107S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:26.3054631Z","activityId":"2088c9fd-53f3-11eb-94ce-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '937' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/cfae9189-89bb-4e99-8b64-07c10c697540?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cfae9189-89bb-4e99-8b64-07c10c697540","name":"cfae9189-89bb-4e99-8b64-07c10c697540","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.7698124S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:26.3054631Z","activityId":"2088c9fd-53f3-11eb-94ce-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '937' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/cfae9189-89bb-4e99-8b64-07c10c697540?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cfae9189-89bb-4e99-8b64-07c10c697540","name":"cfae9189-89bb-4e99-8b64-07c10c697540","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1339927S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:26.3054631Z","activityId":"2088c9fd-53f3-11eb-94ce-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '937' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/cfae9189-89bb-4e99-8b64-07c10c697540?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cfae9189-89bb-4e99-8b64-07c10c697540","name":"cfae9189-89bb-4e99-8b64-07c10c697540","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1303384S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-01-11T09:55:26.3054631Z","endTime":"2021-01-11T09:55:28.4358015Z","activityId":"2088c9fd-53f3-11eb-94ce-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:55: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: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show-connection-string + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 + x-ms-date: + - Mon, 11 Jan 2021 09:56:29 GMT + x-ms-share-quota: + - '1' + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000003.file.core.windows.net/clitest-item000011?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 11 Jan 2021 09:56:29 GMT + etag: + - '"0x8D8B6172B5AB082"' + last-modified: + - Mon, 11 Jan 2021 09:56:30 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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=2020-10-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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1525' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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: + - '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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints?api-version=2020-10-01 + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948","name":"2261228309976223948","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:55:27Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2021-01-11T09:55:27.0000000Z","recoveryPointSizeInGB":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '874' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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 restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1525' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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: + - '145' + 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 11 Jan 2021 09:56:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare Connection: - keep-alive Content-Length: + - '348' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948/restore?api-version=2020-10-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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/d6da3126-73f6-40ca-876d-ec7020dc3905?api-version=2020-10-01 + cache-control: + - no-cache + content-length: - '0' + date: + - Mon, 11 Jan 2021 09:56: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/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/d6da3126-73f6-40ca-876d-ec7020dc3905?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/d6da3126-73f6-40ca-876d-ec7020dc3905?api-version=2020-10-01 + response: + body: + string: '{"id":"d6da3126-73f6-40ca-876d-ec7020dc3905","name":"d6da3126-73f6-40ca-876d-ec7020dc3905","status":"InProgress","startTime":"2021-01-11T09:56:32.8870768Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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: + - '98' + 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/d6da3126-73f6-40ca-876d-ec7020dc3905?api-version=2020-10-01 + response: + body: + string: '{"id":"d6da3126-73f6-40ca-876d-ec7020dc3905","name":"d6da3126-73f6-40ca-876d-ec7020dc3905","status":"Succeeded","startTime":"2021-01-11T09:56:32.8870768Z","endTime":"2021-01-11T09:56:32.8870768Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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: + - '97' + 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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.7034718S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:32.8870768Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1141' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.1233047S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:32.8870768Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1141' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:56: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: + - '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: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.2.0 - x-ms-date: - - Wed, 11 Mar 2020 06:40:36 GMT - x-ms-share-quota: - - '1' - x-ms-version: - - '2018-11-09' - method: PUT - uri: https://clitest000003.file.core.windows.net/clitest-item000011?restype=share + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.426632S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:32.8870768Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' headers: + cache-control: + - no-cache content-length: - - '0' + - '1140' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:40:36 GMT - etag: - - '"0x8D7C5871B81E868"' - last-modified: - - Wed, 11 Mar 2020 06:40:36 GMT + - Mon, 11 Jan 2021 09:56:36 GMT + expires: + - '-1' + pragma: + - no-cache server: - - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2018-11-09' + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-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: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -3318,36 +5040,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 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;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.7668101S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:32.8870768Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1278' + - '1142' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:38 GMT + - Mon, 11 Jan 2021 09:57: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: @@ -3356,6 +5083,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -3369,36 +5098,99 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT40.0114423S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:56:32.8870768Z","endTime":"2021-01-11T09:57:12.8985191Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1232' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:57: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: + - '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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9?api-version=2020-10-01 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;clitest-item000007/recoveryPoints/11002772696541","name":"11002772696541","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2020-03-11T06:39:59Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2020-03-11T06:39:59.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","name":"ac424212-e5fb-44bf-a1e9-13bf6a18c9d9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT40.0114423S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:56:32.8870768Z","endTime":"2021-01-11T09:57:12.8985191Z","activityId":"47d21ea9-53f3-11eb-b65f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '824' + - '1232' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:41 GMT + - Mon, 11 Jan 2021 09:58: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: @@ -3407,6 +5199,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -3424,26 +5218,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' headers: cache-control: - no-cache content-length: - - '1278' + - '1677' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:42 GMT + - Mon, 11 Jan 2021 09:58:07 GMT expires: - '-1' pragma: @@ -3458,6 +5253,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3475,10 +5272,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET @@ -3486,16 +5284,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '189' + - '257' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:40:43 GMT + - Mon, 11 Jan 2021 09:58:07 GMT expires: - '-1' pragma: @@ -3521,17 +5320,116 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:58:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 11 Jan 2021 09:58:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -3540,7 +5438,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:45 GMT + - Mon, 11 Jan 2021 09:58:08 GMT expires: - '-1' pragma: @@ -3559,9 +5457,64 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}\''''' + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore", "targetDetails": + {"name": "clitest-item000011", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + Content-Length: + - '584' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948/restore?api-version=2020-10-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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/527637ec-06ef-4ef2-8853-a8fefe95444f?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 11 Jan 2021 09:58: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/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/527637ec-06ef-4ef2-8853-a8fefe95444f?api-version=2020-10-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 @@ -3571,48 +5524,49 @@ interactions: - backup restore restore-azurefileshare Connection: - keep-alive - Content-Length: - - '348' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints/11002772696541/restore?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/527637ec-06ef-4ef2-8853-a8fefe95444f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"527637ec-06ef-4ef2-8853-a8fefe95444f","name":"527637ec-06ef-4ef2-8853-a8fefe95444f","status":"Succeeded","startTime":"2021-01-11T09:58:09.7296576Z","endTime":"2021-01-11T09:58:09.7296576Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6bdf4822-4e05-41cb-8208-67944b9c3c78"}}' 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;clitest-item000007/operationsStatus/e237c9ab-8ee9-4de7-9db2-6ed36ed8d0ed?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '304' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:40:47 GMT + - Mon, 11 Jan 2021 09:58: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/e237c9ab-8ee9-4de7-9db2-6ed36ed8d0ed?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: - - '1194' + 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: @@ -3625,32 +5579,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/e237c9ab-8ee9-4de7-9db2-6ed36ed8d0ed?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"e237c9ab-8ee9-4de7-9db2-6ed36ed8d0ed","name":"e237c9ab-8ee9-4de7-9db2-6ed36ed8d0ed","status":"Succeeded","startTime":"2020-03-11T06:40:48.1725592Z","endTime":"2020-03-11T06:40:48.1725592Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bbee82a7-2f3b-4731-976b-5e88b07ffb10"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8877565S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:58:09.7296576Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1247' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:50 GMT + - Mon, 11 Jan 2021 09:58: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: @@ -3659,6 +5620,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -3672,34 +5635,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bbee82a7-2f3b-4731-976b-5e88b07ffb10?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bbee82a7-2f3b-4731-976b-5e88b07ffb10","name":"bbee82a7-2f3b-4731-976b-5e88b07ffb10","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.0374621S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3334284S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:40:48.1725592Z","activityId":"39de43e8-6363-11ea-aae8-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:58:09.7296576Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '1247' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:52 GMT + - Mon, 11 Jan 2021 09:58:11 GMT expires: - '-1' pragma: @@ -3715,6 +5679,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3734,28 +5700,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bbee82a7-2f3b-4731-976b-5e88b07ffb10?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bbee82a7-2f3b-4731-976b-5e88b07ffb10","name":"bbee82a7-2f3b-4731-976b-5e88b07ffb10","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT5.7802909S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.6753873S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:40:48.1725592Z","activityId":"39de43e8-6363-11ea-aae8-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:58:09.7296576Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '1247' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:53 GMT + - Mon, 11 Jan 2021 09:58:11 GMT expires: - '-1' pragma: @@ -3771,6 +5738,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -3790,28 +5759,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bbee82a7-2f3b-4731-976b-5e88b07ffb10?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bbee82a7-2f3b-4731-976b-5e88b07ffb10","name":"bbee82a7-2f3b-4731-976b-5e88b07ffb10","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT6.4213775S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.0078959S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:40:48.1725592Z","activityId":"39de43e8-6363-11ea-aae8-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:58:09.7296576Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '1248' content-type: - application/json date: - - Wed, 11 Mar 2020 06:40:53 GMT + - Mon, 11 Jan 2021 09:58:42 GMT expires: - '-1' pragma: @@ -3827,6 +5797,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -3846,28 +5818,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bbee82a7-2f3b-4731-976b-5e88b07ffb10?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bbee82a7-2f3b-4731-976b-5e88b07ffb10","name":"bbee82a7-2f3b-4731-976b-5e88b07ffb10","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT34.5258636S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT35.4748371S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:40:48.1725592Z","endTime":"2020-03-11T06:41:22.6984228Z","activityId":"39de43e8-6363-11ea-aae8-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:58:09.7296576Z","endTime":"2021-01-11T09:58:45.2044947Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1208' + - '1338' content-type: - application/json date: - - Wed, 11 Mar 2020 06:41:26 GMT + - Mon, 11 Jan 2021 09:59:12 GMT expires: - '-1' pragma: @@ -3883,6 +5856,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -3902,28 +5877,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bbee82a7-2f3b-4731-976b-5e88b07ffb10?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bbee82a7-2f3b-4731-976b-5e88b07ffb10","name":"bbee82a7-2f3b-4731-976b-5e88b07ffb10","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT34.5258636S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6bdf4822-4e05-41cb-8208-67944b9c3c78","name":"6bdf4822-4e05-41cb-8208-67944b9c3c78","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT35.4748371S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:40:48.1725592Z","endTime":"2020-03-11T06:41:22.6984228Z","activityId":"39de43e8-6363-11ea-aae8-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:58:09.7296576Z","endTime":"2021-01-11T09:58:45.2044947Z","activityId":"812fadc3-53f3-11eb-84ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1208' + - '1338' content-type: - application/json date: - - Wed, 11 Mar 2020 06:41:58 GMT + - Mon, 11 Jan 2021 09:59:43 GMT expires: - '-1' pragma: @@ -3939,6 +5915,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -3952,31 +5930,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' headers: cache-control: - no-cache content-length: - - '1278' + - '1677' content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:00 GMT + - Mon, 11 Jan 2021 09:59:43 GMT expires: - '-1' pragma: @@ -3991,6 +5969,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4004,15 +5984,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET @@ -4020,16 +6000,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '189' + - '257' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:42:02 GMT + - Mon, 11 Jan 2021 09:59:44 GMT expires: - '-1' pragma: @@ -4051,22 +6032,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4075,7 +6056,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:03 GMT + - Mon, 11 Jan 2021 09:59:44 GMT expires: - '-1' pragma: @@ -4101,15 +6082,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET @@ -4117,16 +6098,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '189' + - '257' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:42:05 GMT + - Mon, 11 Jan 2021 09:59:45 GMT expires: - '-1' pragma: @@ -4148,22 +6130,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4172,7 +6154,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:06 GMT + - Mon, 11 Jan 2021 09:59:45 GMT expires: - '-1' pragma: @@ -4191,49 +6173,51 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''b\\\''{"properties": {"objectType": "AzureFileShareRestoreRequest", - "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore", "targetDetails": - {"name": "clitest-item000011", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}\\\''\''''' + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": + "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive Content-Length: - - '584' + - '699' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints/11002772696541/restore?api-version=2019-06-15 + 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%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948/restore?api-version=2020-10-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;clitest-item000007/operationsStatus/6e9d57e9-153d-4216-aeae-0fc9061ae7c0?api-version=2019-06-15 + - https://management.azure.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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/13e3512e-4111-42b1-82fd-124ae874dec0?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 11 Mar 2020 06:42:09 GMT + - Mon, 11 Jan 2021 09: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/6e9d57e9-153d-4216-aeae-0fc9061ae7c0?api-version=2019-06-15 + - https://management.azure.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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/13e3512e-4111-42b1-82fd-124ae874dec0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -4241,7 +6225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' x-powered-by: - ASP.NET status: @@ -4255,22 +6239,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6e9d57e9-153d-4216-aeae-0fc9061ae7c0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/13e3512e-4111-42b1-82fd-124ae874dec0?api-version=2020-10-01 response: body: - string: '{"id":"6e9d57e9-153d-4216-aeae-0fc9061ae7c0","name":"6e9d57e9-153d-4216-aeae-0fc9061ae7c0","status":"Succeeded","startTime":"2020-03-11T06:42:09.4700145Z","endTime":"2020-03-11T06:42:09.4700145Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"92c71caf-d15c-4ce1-a66b-b08bd6113a04"}}' + string: '{"id":"13e3512e-4111-42b1-82fd-124ae874dec0","name":"13e3512e-4111-42b1-82fd-124ae874dec0","status":"Succeeded","startTime":"2021-01-11T09:59:46.7449295Z","endTime":"2021-01-11T09:59:46.7449295Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"61b7a798-0d81-4667-b584-5ceef2bb6dbb"}}' headers: cache-control: - no-cache @@ -4279,7 +6263,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:11 GMT + - Mon, 11 Jan 2021 09:59:47 GMT expires: - '-1' pragma: @@ -4294,6 +6278,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -4307,36 +6293,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.990808S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3920733S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:42:09.4700145Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:59:46.7449295Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1222' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:12 GMT + - Mon, 11 Jan 2021 09:59:47 GMT expires: - '-1' pragma: @@ -4352,6 +6338,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4371,29 +6359,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.834712S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1444684S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:42:09.4700145Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:59:46.7449295Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1222' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:13 GMT + - Mon, 11 Jan 2021 09:59:48 GMT expires: - '-1' pragma: @@ -4409,6 +6397,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -4428,29 +6418,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT5.4736076S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.4677598S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:42:09.4700145Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:59:46.7449295Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1223' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:15 GMT + - Mon, 11 Jan 2021 09:59:49 GMT expires: - '-1' pragma: @@ -4466,6 +6456,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -4485,29 +6477,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT36.169967S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.7951572S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:42:09.4700145Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:59:46.7449295Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1223' + - '1255' content-type: - application/json date: - - Wed, 11 Mar 2020 06:42:45 GMT + - Mon, 11 Jan 2021 10:00:18 GMT expires: - '-1' pragma: @@ -4523,6 +6515,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -4542,29 +6536,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT57.7726714S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:42:09.4700145Z","endTime":"2020-03-11T06:43:07.2426859Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT34.4123386S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:59:46.7449295Z","endTime":"2021-01-11T10:00:21.1572681Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1314' + - '1345' content-type: - application/json date: - - Wed, 11 Mar 2020 06:43:16 GMT + - Mon, 11 Jan 2021 10:00:49 GMT expires: - '-1' pragma: @@ -4580,6 +6574,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4599,29 +6595,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/92c71caf-d15c-4ce1-a66b-b08bd6113a04?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/92c71caf-d15c-4ce1-a66b-b08bd6113a04","name":"92c71caf-d15c-4ce1-a66b-b08bd6113a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT57.7726714S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:42:09.4700145Z","endTime":"2020-03-11T06:43:07.2426859Z","activityId":"68624b58-6363-11ea-892a-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61b7a798-0d81-4667-b584-5ceef2bb6dbb","name":"61b7a798-0d81-4667-b584-5ceef2bb6dbb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT34.4123386S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:59:46.7449295Z","endTime":"2021-01-11T10:00:21.1572681Z","activityId":"bab7c8a8-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1314' + - '1345' content-type: - application/json date: - - Wed, 11 Mar 2020 06:43:49 GMT + - Mon, 11 Jan 2021 10:01:20 GMT expires: - '-1' pragma: @@ -4637,6 +6633,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4655,26 +6653,25 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' headers: cache-control: - no-cache content-length: - - '1278' + - '1677' content-type: - application/json date: - - Wed, 11 Mar 2020 06:43:51 GMT + - Mon, 11 Jan 2021 10:01:20 GMT expires: - '-1' pragma: @@ -4689,6 +6686,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4707,10 +6706,9 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET @@ -4718,16 +6716,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '189' + - '257' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:43:53 GMT + - Mon, 11 Jan 2021 10:01:20 GMT expires: - '-1' pragma: @@ -4754,17 +6753,16 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -4773,7 +6771,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:43:54 GMT + - Mon, 11 Jan 2021 10:01:20 GMT expires: - '-1' pragma: @@ -4792,7 +6790,10 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File"}]}}' headers: Accept: - application/json @@ -4802,42 +6803,48 @@ interactions: - backup restore restore-azurefiles Connection: - keep-alive + Content-Length: + - '432' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948/restore?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/adcf0187-7f83-4c05-810e-c23408b726c5?api-version=2020-10-01 cache-control: - no-cache content-length: - - '189' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 11 Mar 2020 06:43:56 GMT + - Mon, 11 Jan 2021 10:01: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/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/adcf0187-7f83-4c05-810e-c23408b726c5?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 202 + message: Accepted - request: body: null headers: @@ -4851,32 +6858,31 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/adcf0187-7f83-4c05-810e-c23408b726c5?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"adcf0187-7f83-4c05-810e-c23408b726c5","name":"adcf0187-7f83-4c05-810e-c23408b726c5","status":"Succeeded","startTime":"2021-01-11T10:01:22.3558988Z","endTime":"2021-01-11T10:01:22.3558988Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"864c6727-dc3c-4c4b-8d83-3894d81f41a1"}}' headers: cache-control: - no-cache content-length: - - '919' + - '304' content-type: - application/json date: - - Wed, 11 Mar 2020 06:43:57 GMT + - Mon, 11 Jan 2021 10:01:22 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4885,68 +6891,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - status: - code: 200 - message: OK -- request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"objectType": "AzureFileShareRestoreRequest", - "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": - "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}\\\\\\\''\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-azurefiles - Connection: - - keep-alive - Content-Length: - - '699' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints/11002772696541/restore?api-version=2019-06-15 - 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;clitest-item000007/operationsStatus/722b10db-a604-411e-bd7b-66ba66ef8a56?api-version=2019-06-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 11 Mar 2020 06:43: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/722b10db-a604-411e-bd7b-66ba66ef8a56?api-version=2019-06-15 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1162' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4960,32 +6911,36 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/722b10db-a604-411e-bd7b-66ba66ef8a56?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"722b10db-a604-411e-bd7b-66ba66ef8a56","name":"722b10db-a604-411e-bd7b-66ba66ef8a56","status":"Succeeded","startTime":"2020-03-11T06:43:59.1838462Z","endTime":"2020-03-11T06:43:59.1838462Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5bf3d73b-e07c-436f-b2ed-073cdd237a41"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4210083S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:01:22.3558988Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1141' content-type: - application/json date: - - Wed, 11 Mar 2020 06:44:01 GMT + - Mon, 11 Jan 2021 10:01: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: @@ -4994,6 +6949,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -5007,36 +6964,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5bf3d73b-e07c-436f-b2ed-073cdd237a41?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bf3d73b-e07c-436f-b2ed-073cdd237a41","name":"5bf3d73b-e07c-436f-b2ed-073cdd237a41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.1122939S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8575107S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:43:59.1838462Z","activityId":"aa67bd3e-6363-11ea-b2d0-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:01:22.3558988Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1230' + - '1141' content-type: - application/json date: - - Wed, 11 Mar 2020 06:44:03 GMT + - Mon, 11 Jan 2021 10:01:23 GMT expires: - '-1' pragma: @@ -5052,6 +7007,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -5071,29 +7028,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5bf3d73b-e07c-436f-b2ed-073cdd237a41?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bf3d73b-e07c-436f-b2ed-073cdd237a41","name":"5bf3d73b-e07c-436f-b2ed-073cdd237a41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT6.4848846S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.2019367S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:43:59.1838462Z","activityId":"aa67bd3e-6363-11ea-b2d0-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:01:22.3558988Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1230' + - '1141' content-type: - application/json date: - - Wed, 11 Mar 2020 06:44:05 GMT + - Mon, 11 Jan 2021 10:01:24 GMT expires: - '-1' pragma: @@ -5109,6 +7065,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -5128,29 +7086,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5bf3d73b-e07c-436f-b2ed-073cdd237a41?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bf3d73b-e07c-436f-b2ed-073cdd237a41","name":"5bf3d73b-e07c-436f-b2ed-073cdd237a41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT7.1190028S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.5496867S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:43:59.1838462Z","activityId":"aa67bd3e-6363-11ea-b2d0-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:01:22.3558988Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1230' + - '1142' content-type: - application/json date: - - Wed, 11 Mar 2020 06:44:05 GMT + - Mon, 11 Jan 2021 10:01:54 GMT expires: - '-1' pragma: @@ -5166,6 +7123,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -5185,29 +7144,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5bf3d73b-e07c-436f-b2ed-073cdd237a41?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bf3d73b-e07c-436f-b2ed-073cdd237a41","name":"5bf3d73b-e07c-436f-b2ed-073cdd237a41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.5479248S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.8894803S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:43:59.1838462Z","endTime":"2020-03-11T06:44:32.731771Z","activityId":"aa67bd3e-6363-11ea-b2d0-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T10:01:22.3558988Z","endTime":"2021-01-11T10:01:56.2453791Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1320' + - '1232' content-type: - application/json date: - - Wed, 11 Mar 2020 06:44:36 GMT + - Mon, 11 Jan 2021 10:02:24 GMT expires: - '-1' pragma: @@ -5223,6 +7181,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -5242,29 +7202,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5bf3d73b-e07c-436f-b2ed-073cdd237a41?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5bf3d73b-e07c-436f-b2ed-073cdd237a41","name":"5bf3d73b-e07c-436f-b2ed-073cdd237a41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.5479248S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/864c6727-dc3c-4c4b-8d83-3894d81f41a1","name":"864c6727-dc3c-4c4b-8d83-3894d81f41a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.8894803S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:43:59.1838462Z","endTime":"2020-03-11T06:44:32.731771Z","activityId":"aa67bd3e-6363-11ea-b2d0-186024943d4f"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T10:01:22.3558988Z","endTime":"2021-01-11T10:01:56.2453791Z","activityId":"f43a0868-53f3-11eb-b61c-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1320' + - '1232' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:09 GMT + - Mon, 11 Jan 2021 10:02:55 GMT expires: - '-1' pragma: @@ -5280,6 +7239,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -5298,25 +7259,26 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' headers: cache-control: - no-cache content-length: - - '1278' + - '1677' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:11 GMT + - Mon, 11 Jan 2021 10:02:56 GMT expires: - '-1' pragma: @@ -5331,6 +7293,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -5349,9 +7313,10 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET @@ -5359,16 +7324,17 @@ interactions: response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '189' + - '257' content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:45:14 GMT + - Mon, 11 Jan 2021 10:02:56 GMT expires: - '-1' pragma: @@ -5395,16 +7361,17 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -5413,7 +7380,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:14 GMT + - Mon, 11 Jan 2021 10:02:56 GMT expires: - '-1' pragma: @@ -5432,10 +7399,7 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''b\\\''{"properties": {"objectType": "AzureFileShareRestoreRequest", - "recoveryType": "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File"}]}}\\\''\''''' + body: null headers: Accept: - application/json @@ -5445,48 +7409,43 @@ interactions: - backup restore restore-azurefiles Connection: - keep-alive - Content-Length: - - '432' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints/11002772696541/restore?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 response: body: - string: '' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' 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;clitest-item000007/operationsStatus/dcb4bd7c-5af6-4c8a-a4dd-693be577ca23?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '257' + content-type: + - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:45:17 GMT + - Mon, 11 Jan 2021 10:02: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/dcb4bd7c-5af6-4c8a-a4dd-693be577ca23?api-version=2019-06-15 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 + x-ms-failure-cause: + - gateway status: - code: 202 - message: Accepted + code: 404 + message: Not Found - request: body: null headers: @@ -5500,31 +7459,32 @@ interactions: - keep-alive ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/dcb4bd7c-5af6-4c8a-a4dd-693be577ca23?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"id":"dcb4bd7c-5af6-4c8a-a4dd-693be577ca23","name":"dcb4bd7c-5af6-4c8a-a4dd-693be577ca23","status":"Succeeded","startTime":"2020-03-11T06:45:16.7350547Z","endTime":"2020-03-11T06:45:16.7350547Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9a606b44-ba07-4f1e-883c-c237932ed05c"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8227709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7290338Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '304' + - '919' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:18 GMT + - Mon, 11 Jan 2021 10:02:57 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5533,13 +7493,17 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": + "folder1"}, {"path": "clitest-file000006", "fileSpecType": "File", "targetFolderPath": + "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' headers: Accept: - application/json @@ -5549,51 +7513,49 @@ interactions: - backup restore restore-azurefiles Connection: - keep-alive + Content-Length: + - '792' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9a606b44-ba07-4f1e-883c-c237932ed05c?api-version=2019-06-15 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/recoveryPoints/2261228309976223948/restore?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9a606b44-ba07-4f1e-883c-c237932ed05c","name":"9a606b44-ba07-4f1e-883c-c237932ed05c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.1300154S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:45:16.7350547Z","activityId":"da09798c-6363-11ea-9362-186024943d4f"}}' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationsStatus/e10f5c92-743f-4661-b739-8d04bba776da?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1117' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:45:20 GMT + - Mon, 11 Jan 2021 10:02: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/protectedItems/AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2/operationResults/e10f5c92-743f-4661-b739-8d04bba776da?api-version=2020-10-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-writes: + - '1194' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5602,41 +7564,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9a606b44-ba07-4f1e-883c-c237932ed05c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e10f5c92-743f-4661-b739-8d04bba776da?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9a606b44-ba07-4f1e-883c-c237932ed05c","name":"9a606b44-ba07-4f1e-883c-c237932ed05c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.7863277S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:45:16.7350547Z","activityId":"da09798c-6363-11ea-9362-186024943d4f"}}' + string: '{"id":"e10f5c92-743f-4661-b739-8d04bba776da","name":"e10f5c92-743f-4661-b739-8d04bba776da","status":"InProgress","startTime":"2021-01-11T10:02:58.8605445Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1117' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:21 GMT + - Mon, 11 Jan 2021 10:02: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: @@ -5645,6 +7603,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -5658,41 +7618,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9a606b44-ba07-4f1e-883c-c237932ed05c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e10f5c92-743f-4661-b739-8d04bba776da?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9a606b44-ba07-4f1e-883c-c237932ed05c","name":"9a606b44-ba07-4f1e-883c-c237932ed05c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT5.4120531S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:45:16.7350547Z","activityId":"da09798c-6363-11ea-9362-186024943d4f"}}' + string: '{"id":"e10f5c92-743f-4661-b739-8d04bba776da","name":"e10f5c92-743f-4661-b739-8d04bba776da","status":"Succeeded","startTime":"2021-01-11T10:02:58.8605445Z","endTime":"2021-01-11T10:02:58.8605445Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fc7022fb-e892-4ac0-8cae-8d6bee836533"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '304' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:22 GMT + - Mon, 11 Jan 2021 10:03: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: @@ -5701,6 +7657,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -5714,34 +7672,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9a606b44-ba07-4f1e-883c-c237932ed05c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9a606b44-ba07-4f1e-883c-c237932ed05c","name":"9a606b44-ba07-4f1e-883c-c237932ed05c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9745323S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:45:16.7350547Z","endTime":"2020-03-11T06:45:49.709587Z","activityId":"da09798c-6363-11ea-9362-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.2052065S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:02:58.8605445Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1207' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:45:52 GMT + - Mon, 11 Jan 2021 10:03:02 GMT expires: - '-1' pragma: @@ -5757,6 +7717,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -5770,34 +7732,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup job wait Connection: - keep-alive ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9a606b44-ba07-4f1e-883c-c237932ed05c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9a606b44-ba07-4f1e-883c-c237932ed05c","name":"9a606b44-ba07-4f1e-883c-c237932ed05c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9745323S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:45:16.7350547Z","endTime":"2020-03-11T06:45:49.709587Z","activityId":"da09798c-6363-11ea-9362-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.6608795S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:02:58.8605445Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1207' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:26 GMT + - Mon, 11 Jan 2021 10:03:02 GMT expires: - '-1' pragma: @@ -5813,6 +7776,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -5826,37 +7791,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 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;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.9839169S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:02:58.8605445Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1278' + - '1254' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:28 GMT + - Mon, 11 Jan 2021 10:03: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: @@ -5865,6 +7835,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -5878,84 +7850,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' - headers: - cache-control: - - no-cache - content-length: - - '189' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 11 Mar 2020 06:46:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT34.3921696S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T10:02:58.8605445Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '919' + - '1255' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:32 GMT + - Mon, 11 Jan 2021 10:03:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5964,6 +7894,10 @@ interactions: - 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 @@ -5975,45 +7909,57 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.6988008S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T10:02:58.8605445Z","endTime":"2021-01-11T10:03:32.5593453Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '189' + - '1345' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 11 Mar 2020 06:46:33 GMT + - Mon, 11 Jan 2021 10:04: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -6022,37 +7968,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job show Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-03-11T06:37:55.6266580Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-11T06:37:55.5798115Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc7022fb-e892-4ac0-8cae-8d6bee836533","name":"fc7022fb-e892-4ac0-8cae-8d6bee836533","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.6988008S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:27 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T10:02:58.8605445Z","endTime":"2021-01-11T10:03:32.5593453Z","activityId":"2d5a3530-53f4-11eb-81cd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '919' + - '1345' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:33 GMT + - Mon, 11 Jan 2021 10:04:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6061,70 +8012,66 @@ interactions: - 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: 'b''b\''b\\\''b\\\\\\\''b\\\\\\\\\\\\\\\''{"properties": {"objectType": - "AzureFileShareRestoreRequest", "recoveryType": "AlternateLocation", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": - "folder1"}, {"path": "clitest-file000006", "fileSpecType": "File", "targetFolderPath": - "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}\\\\\\\\\\\\\\\''\\\\\\\''\\\''\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection disable Connection: - keep-alive - Content-Length: - - '792' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000007/recoveryPoints/11002772696541/restore?api-version=2019-06-15 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '' + 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;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","name":"AzureFileShare;8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2","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":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:26.3054631Z","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-item000008"}}]}' 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;clitest-item000007/operationsStatus/39c87568-0eef-4756-912b-ea9966d0ff18?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '1677' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:46:37 GMT + - Mon, 11 Jan 2021 10:04: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/protectedItems/AzureFileShare;clitest-item000007/operationResults/39c87568-0eef-4756-912b-ea9966d0ff18?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: - - '1195' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6133,50 +8080,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/39c87568-0eef-4756-912b-ea9966d0ff18?api-version=2016-12-01 + 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%3B8149e82b1eeef22c5d5adaccb79bf8311338a3d85532eb8261b20e6606c978e2?api-version=2020-10-01 response: body: - string: '{"id":"39c87568-0eef-4756-912b-ea9966d0ff18","name":"39c87568-0eef-4756-912b-ea9966d0ff18","status":"Succeeded","startTime":"2020-03-11T06:46:37.2083698Z","endTime":"2020-03-11T06:46:37.2083698Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7c3b4f4b-b989-4792-b200-4b84cf47284d"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:46:39 GMT + - Mon, 11 Jan 2021 10:04:35 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-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-deletes: + - '14994' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6185,43 +8131,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7c3b4f4b-b989-4792-b200-4b84cf47284d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7c3b4f4b-b989-4792-b200-4b84cf47284d","name":"7c3b4f4b-b989-4792-b200-4b84cf47284d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.9690148S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:46:37.2083698Z","activityId":"07cc192c-6364-11ea-9131-186024943d4f"}}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:41 GMT + - Mon, 11 Jan 2021 10:04: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: @@ -6230,6 +8169,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6243,42 +8184,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7c3b4f4b-b989-4792-b200-4b84cf47284d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7c3b4f4b-b989-4792-b200-4b84cf47284d","name":"7c3b4f4b-b989-4792-b200-4b84cf47284d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT6.7006037S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:46:37.2083698Z","activityId":"07cc192c-6364-11ea-9131-186024943d4f"}}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:44 GMT + - Mon, 11 Jan 2021 10:04: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: @@ -6287,6 +8222,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6300,42 +8237,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7c3b4f4b-b989-4792-b200-4b84cf47284d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7c3b4f4b-b989-4792-b200-4b84cf47284d","name":"7c3b4f4b-b989-4792-b200-4b84cf47284d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT7.3482429S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2020-03-11T06:46:37.2083698Z","activityId":"07cc192c-6364-11ea-9131-186024943d4f"}}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:46:44 GMT + - Mon, 11 Jan 2021 10:04: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: @@ -6344,6 +8275,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -6357,42 +8290,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7c3b4f4b-b989-4792-b200-4b84cf47284d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7c3b4f4b-b989-4792-b200-4b84cf47284d","name":"7c3b4f4b-b989-4792-b200-4b84cf47284d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.7472367S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:46:37.2083698Z","endTime":"2020-03-11T06:47:10.9556065Z","activityId":"07cc192c-6364-11ea-9131-186024943d4f"}}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1321' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:15 GMT + - Mon, 11 Jan 2021 10:04: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: @@ -6401,6 +8328,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6414,42 +8343,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7c3b4f4b-b989-4792-b200-4b84cf47284d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7c3b4f4b-b989-4792-b200-4b84cf47284d","name":"7c3b4f4b-b989-4792-b200-4b84cf47284d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.7472367S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"3/11/2020 - 6:40:00 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2020-03-11T06:46:37.2083698Z","endTime":"2020-03-11T06:47:10.9556065Z","activityId":"07cc192c-6364-11ea-9131-186024943d4f"}}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1321' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:47 GMT + - Mon, 11 Jan 2021 10: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: @@ -6458,6 +8381,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6477,24 +8402,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 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;clitest-item000007","name":"AzureFileShare;clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2020-03-11T06:39:58.2696712Z","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-item000008"}}]}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1278' + - '188' content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:49 GMT + - Mon, 11 Jan 2021 10:04:42 GMT expires: - '-1' pragma: @@ -6509,6 +8434,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6525,46 +8452,48 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000007?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:47:52 GMT + - Mon, 11 Jan 2021 10:04:43 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6579,15 +8508,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6596,7 +8525,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:53 GMT + - Mon, 11 Jan 2021 10:04:46 GMT expires: - '-1' pragma: @@ -6611,6 +8540,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6630,15 +8561,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6647,7 +8578,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:55 GMT + - Mon, 11 Jan 2021 10:04:47 GMT expires: - '-1' pragma: @@ -6662,6 +8593,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6681,15 +8614,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6698,7 +8631,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:56 GMT + - Mon, 11 Jan 2021 10:04:48 GMT expires: - '-1' pragma: @@ -6713,6 +8646,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6732,15 +8667,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6749,7 +8684,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:47:58 GMT + - Mon, 11 Jan 2021 10:04:49 GMT expires: - '-1' pragma: @@ -6764,6 +8699,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -6783,15 +8720,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6800,7 +8737,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:00 GMT + - Mon, 11 Jan 2021 10:04:50 GMT expires: - '-1' pragma: @@ -6815,6 +8752,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -6834,15 +8773,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6851,7 +8790,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:01 GMT + - Mon, 11 Jan 2021 10:04:52 GMT expires: - '-1' pragma: @@ -6866,6 +8805,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -6885,15 +8826,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6902,7 +8843,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:03 GMT + - Mon, 11 Jan 2021 10:04:53 GMT expires: - '-1' pragma: @@ -6917,6 +8858,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -6936,15 +8879,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6953,7 +8896,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:05 GMT + - Mon, 11 Jan 2021 10:04:54 GMT expires: - '-1' pragma: @@ -6968,6 +8911,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -6987,15 +8932,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"InProgress","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7004,7 +8949,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:06 GMT + - Mon, 11 Jan 2021 10:04:56 GMT expires: - '-1' pragma: @@ -7019,6 +8964,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -7038,24 +8985,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0424bbd1-9101-44c5-ae02-3ac1cc4de452?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","name":"0424bbd1-9101-44c5-ae02-3ac1cc4de452","status":"Succeeded","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"2021-01-11T10:04:35.9862866Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"15f0a40b-923f-478f-94f2-5c57554172bf"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:07 GMT + - Mon, 11 Jan 2021 10:04:57 GMT expires: - '-1' pragma: @@ -7070,6 +9017,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -7089,30 +9038,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/15f0a40b-923f-478f-94f2-5c57554172bf?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/15f0a40b-923f-478f-94f2-5c57554172bf","name":"15f0a40b-923f-478f-94f2-5c57554172bf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.3708646S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-11T10:04:35.9862866Z","endTime":"2021-01-11T10:04:57.3571512Z","activityId":"67f9fbfe-53f4-11eb-94a3-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:09 GMT + - Mon, 11 Jan 2021 10:04: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: @@ -7121,6 +9072,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -7134,30 +9087,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:11 GMT + - Mon, 11 Jan 2021 10:04:58 GMT expires: - '-1' pragma: @@ -7172,6 +9125,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -7185,49 +9140,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"InProgress","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"0001-01-01T00:00:00"}' + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 11 Mar 2020 06:48:13 GMT + - Mon, 11 Jan 2021 10:04:59 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/0ad59133-7d68-46e8-86b5-8962a869892c?fabricName=Azure?api-version=2020-10-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-deletes: + - '14997' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7236,49 +9191,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3c9573f1-0196-4bcb-a518-118ceb18cf24?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 response: body: - string: '{"id":"3c9573f1-0196-4bcb-a518-118ceb18cf24","name":"3c9573f1-0196-4bcb-a518-118ceb18cf24","status":"Succeeded","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"2020-03-11T06:47:51.9836245Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"59fbeff7-7eaa-452e-b41b-e62d5da2fb16"}}' + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:14 GMT + - Mon, 11 Jan 2021 10:05: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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: + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7287,51 +9244,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/59fbeff7-7eaa-452e-b41b-e62d5da2fb16?api-version=2019-06-15 + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/59fbeff7-7eaa-452e-b41b-e62d5da2fb16","name":"59fbeff7-7eaa-452e-b41b-e62d5da2fb16","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT22.2400001S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000007","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2020-03-11T06:47:51.9836245Z","endTime":"2020-03-11T06:48:14.2236246Z","activityId":"37d243cc-6364-11ea-bfbe-186024943d4f"}}' + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '882' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:15 GMT + - Mon, 11 Jan 2021 10:05: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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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: + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7346,43 +9303,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:18 GMT + - Mon, 11 Jan 2021 10:05: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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: + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7394,41 +9353,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + 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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 response: body: - string: '' + 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 11 Mar 2020 06:48:19 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?fabricName=Azure?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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: - - '14993' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -7448,18 +9409,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7467,11 +9428,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:26 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7480,6 +9441,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -7499,18 +9462,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7518,11 +9481,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:28 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7531,6 +9494,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -7550,18 +9515,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7569,11 +9534,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:29 GMT + - Mon, 11 Jan 2021 10:05:08 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7582,6 +9547,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -7601,18 +9568,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7620,11 +9587,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:31 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7633,6 +9600,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -7652,18 +9621,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7671,11 +9640,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:32 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7684,6 +9653,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -7703,18 +9674,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7722,11 +9693,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:34 GMT + - Mon, 11 Jan 2021 10:05:12 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7735,6 +9706,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -7754,18 +9727,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7773,11 +9746,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:36 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7786,6 +9759,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -7805,18 +9780,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7824,11 +9799,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:37 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7837,6 +9812,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -7856,18 +9833,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7875,11 +9852,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:38 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7888,6 +9865,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -7907,18 +9886,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7926,11 +9905,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:40 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7939,6 +9918,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -7958,18 +9939,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7977,11 +9958,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:42 GMT + - Mon, 11 Jan 2021 10:05: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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -7990,6 +9971,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -8009,18 +9992,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8028,11 +10011,11 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:44 GMT + - Mon, 11 Jan 2021 10:05: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 pragma: - no-cache server: @@ -8041,6 +10024,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -8060,12 +10045,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/a87cb778-a4fd-49b7-bf07-4cc23068c5f8?api-version=2016-12-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/0ad59133-7d68-46e8-86b5-8962a869892c?api-version=2020-10-01 response: body: string: '' @@ -8075,7 +10060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Mar 2020 06:48:45 GMT + - Mon, 11 Jan 2021 10:05:22 GMT expires: - '-1' pragma: @@ -8084,6 +10069,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -8103,12 +10090,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8120,7 +10107,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Mar 2020 06:48:48 GMT + - Mon, 11 Jan 2021 10:07:03 GMT expires: - '-1' pragma: @@ -8135,6 +10122,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -8156,8 +10145,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.2.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -8171,7 +10160,7 @@ interactions: content-length: - '0' date: - - Wed, 11 Mar 2020 06:48:58 GMT + - Mon, 11 Jan 2021 10:07:17 GMT expires: - '-1' pragma: @@ -8181,7 +10170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK 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 5f046285af5..43f38e3315f 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T07%3A59%3A26.321851Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-11T09%3A52%3A53.881699Z''\"","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: - - '399' + - '483' content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:25 GMT + - Mon, 11 Jan 2021 09:52:54 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '208' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:47 GMT + - Mon, 11 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -98,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' status: code: 200 message: OK @@ -111,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Wed, 27 Nov 2019 07:59:48 GMT + - Mon, 11 Jan 2021 09:53:16 GMT x-ms-share-quota: - '1' x-ms-version: @@ -127,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:47 GMT + - Mon, 11 Jan 2021 09:53:16 GMT etag: - - '"0x8D7730FC67E3AC6"' + - '"0x8D8B616B84ECB1A"' last-modified: - - Wed, 27 Nov 2019 07:59:48 GMT + - Mon, 11 Jan 2021 09:53:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -153,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -170,7 +167,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:48 GMT + - Mon, 11 Jan 2021 09:53:17 GMT expires: - '-1' pragma: @@ -185,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -193,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T17:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T17:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -211,17 +210,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -230,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 07:59:50 GMT + - Mon, 11 Jan 2021 09:53:17 GMT expires: - '-1' pragma: @@ -246,7 +245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -263,46 +262,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + string: '{"value":[]}' 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Wed, 27 Nov 2019 07:59:51 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-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: @@ -317,37 +318,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '23869' + content-type: + - application/json date: - - Wed, 27 Nov 2019 07:59:50 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-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: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -359,35 +368,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:52 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-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: @@ -407,12 +422,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -422,17 +437,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:53 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -452,12 +469,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -467,17 +484,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:54 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -497,12 +516,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -512,17 +531,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:55 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -542,12 +563,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -557,17 +578,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:57 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -587,12 +610,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -602,17 +625,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:58 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -632,12 +657,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -647,17 +672,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 07:59:59 GMT + - Mon, 11 Jan 2021 09:53: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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -677,12 +704,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' @@ -692,17 +719,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:00:00 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -722,33 +751,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/fbbc5cc4-e62d-41ec-864a-0a3485eb3c09?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 08:00:01 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -763,43 +798,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/05460c46-4b7f-408c-8050-bc35db1cd580?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache - content-length: - - '12' - content-type: - - application/json date: - - Wed, 27 Nov 2019 08:00:02 GMT + - Mon, 11 Jan 2021 09:53: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: + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -814,24 +841,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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.rguboywlkmkm;clitestltoqs2x3srtkulo2m","name":"StorageContainer;Storage;clitest.rguboywlkmkm;clitestltoqs2x3srtkulo2m","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestltoqs2x3srtkulo2m","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguboywlkmkm/providers/Microsoft.Storage/storageAccounts/clitestltoqs2x3srtkulo2m"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","name":"StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgjjayztgdz3xm7unr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5urjhs4xm3/providers/Microsoft.Storage/storageAccounts/clitestgjjayztgdz3xm7unr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgiv7vnbwdbn;clitestn5zs36l7jwjobnnoc","name":"StorageContainer;Storage;clitest.rgiv7vnbwdbn;clitestn5zs36l7jwjobnnoc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestn5zs36l7jwjobnnoc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiv7vnbwdbn/providers/Microsoft.Storage/storageAccounts/clitestn5zs36l7jwjobnnoc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","name":"StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestclnhc546p344yu7d6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqluqqnhk6/providers/Microsoft.Storage/storageAccounts/clitestclnhc546p344yu7d6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","name":"StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqtpsymefcd7sld4t6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlcrm23nul/providers/Microsoft.Storage/storageAccounts/clitestqtpsymefcd7sld4t6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"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.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","name":"StorageContainer;Storage;clitest.rgr3lgndrdni;clitest35m75cuxsw23uzmpn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest35m75cuxsw23uzmpn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr3lgndrdni/providers/Microsoft.Storage/storageAccounts/clitest35m75cuxsw23uzmpn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rguzzze3ew33;clitestscukb6vduhpsy3x2a","name":"StorageContainer;Storage;clitest.rguzzze3ew33;clitestscukb6vduhpsy3x2a","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestscukb6vduhpsy3x2a","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguzzze3ew33/providers/Microsoft.Storage/storageAccounts/clitestscukb6vduhpsy3x2a"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '6611' + - '28531' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:02 GMT + - Mon, 11 Jan 2021 09:53:30 GMT expires: - '-1' pragma: @@ -846,14 +873,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -870,18 +899,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -889,11 +918,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:02 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -903,58 +932,7 @@ interactions: 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 protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '1191' x-powered-by: - ASP.NET status: @@ -974,18 +952,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -993,11 +971,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:05 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1006,6 +984,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1025,18 +1005,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1044,11 +1024,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:06 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1057,6 +1037,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1076,18 +1058,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1095,11 +1077,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:07 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1108,6 +1090,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1127,18 +1111,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1146,11 +1130,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:08 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1159,6 +1143,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1178,18 +1164,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1197,11 +1183,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:10 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1210,6 +1196,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1229,18 +1217,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1248,11 +1236,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:11 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1261,6 +1249,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1280,18 +1270,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1299,11 +1289,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:12 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1312,6 +1302,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -1331,18 +1323,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1350,11 +1342,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:13 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1363,6 +1355,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -1382,18 +1376,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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/f26a4476-0c14-4344-b3f2-716ca033f243?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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1401,11 +1395,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:14 GMT + - Mon, 11 Jan 2021 09:53: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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-01 pragma: - no-cache server: @@ -1414,6 +1408,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -1433,24 +1429,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/f26a4476-0c14-4344-b3f2-716ca033f243?api-version=2016-12-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/0c23486e-658d-4933-b610-aa4bf138cecb?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '868' + - '790' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:15 GMT + - Mon, 11 Jan 2021 09:53:43 GMT expires: - '-1' pragma: @@ -1465,6 +1461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -1484,15 +1482,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + 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=2020-10-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":["2019-11-27T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T17:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1501,7 +1499,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:15 GMT + - Mon, 11 Jan 2021 09:53:44 GMT expires: - '-1' pragma: @@ -1516,6 +1514,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1535,12 +1535,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: string: '{"value":[]}' @@ -1552,7 +1552,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:16 GMT + - Mon, 11 Jan 2021 09:53:44 GMT expires: - '-1' pragma: @@ -1567,6 +1567,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1588,28 +1590,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:00:17 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1617,7 +1619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -1637,18 +1639,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1656,11 +1658,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:17 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache server: @@ -1669,6 +1671,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -1688,18 +1692,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1707,11 +1711,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:18 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache server: @@ -1720,6 +1724,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -1739,18 +1745,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1758,11 +1764,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:19 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache server: @@ -1771,6 +1777,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -1790,18 +1798,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1809,11 +1817,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:20 GMT + - Mon, 11 Jan 2021 09:53:49 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache server: @@ -1822,6 +1830,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -1841,18 +1851,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-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/060af829-8baa-4754-a5c7-b54234488a0a?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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1860,11 +1870,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:22 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 pragma: - no-cache server: @@ -1873,6 +1883,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -1892,43 +1904,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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/71a6cbd4-9242-47a9-a744-3dc2ddb3ffd0?api-version=2020-10-01 response: body: - string: '{}' + 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:00:23 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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 + code: 204 + message: No Content - request: body: null headers: @@ -1943,45 +1949,49 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"azurefileshare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","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: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:24 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -1991,41 +2001,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + 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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2?api-version=2020-10-01 response: body: - string: '{}' + 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/060af829-8baa-4754-a5c7-b54234488a0a?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/protectedItems/azurefileshare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationsStatus/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:00:25 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationResults/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-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-writes: + - '1192' x-powered-by: - ASP.NET status: @@ -2045,43 +2057,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:26 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '67' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2096,43 +2110,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:29 GMT + - Mon, 11 Jan 2021 09:53: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '66' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2147,43 +2163,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:30 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '64' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2198,43 +2216,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:31 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '62' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2249,43 +2269,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:32 GMT + - Mon, 11 Jan 2021 09:53: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '60' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2300,43 +2322,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:33 GMT + - Mon, 11 Jan 2021 09:54: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '58' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2351,43 +2375,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:34 GMT + - Mon, 11 Jan 2021 09:54: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '56' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2402,43 +2428,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:36 GMT + - Mon, 11 Jan 2021 09:54: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '54' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2453,43 +2481,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:37 GMT + - Mon, 11 Jan 2021 09:54: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '52' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2504,43 +2534,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:38 GMT + - Mon, 11 Jan 2021 09:54: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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-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: + - '50' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2555,35 +2587,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/060af829-8baa-4754-a5c7-b54234488a0a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '187' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 08:00:39 GMT + - Mon, 11 Jan 2021 09:54: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: + - '48' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2598,24 +2640,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 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;clitest-item000004","name":"azurefileshare;clitest-item000004","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: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '959' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:40 GMT + - Mon, 11 Jan 2021 09:54:08 GMT expires: - '-1' pragma: @@ -2630,66 +2672,13 @@ interactions: - 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: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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;clitest-item000004/operationsStatus/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08: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/protectedItems/azurefileshare;clitest-item000004/operationResults/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2019-05-13 - 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: @@ -2704,24 +2693,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:40 GMT + - Mon, 11 Jan 2021 09:54:09 GMT expires: - '-1' pragma: @@ -2736,6 +2725,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -2755,24 +2746,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:41 GMT + - Mon, 11 Jan 2021 09:54:10 GMT expires: - '-1' pragma: @@ -2787,6 +2778,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -2806,24 +2799,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:43 GMT + - Mon, 11 Jan 2021 09:54:12 GMT expires: - '-1' pragma: @@ -2838,6 +2831,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -2857,24 +2852,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:45 GMT + - Mon, 11 Jan 2021 09:54:14 GMT expires: - '-1' pragma: @@ -2889,6 +2884,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -2908,24 +2905,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:46 GMT + - Mon, 11 Jan 2021 09:54:15 GMT expires: - '-1' pragma: @@ -2940,6 +2937,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -2959,24 +2958,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:48 GMT + - Mon, 11 Jan 2021 09:54:16 GMT expires: - '-1' pragma: @@ -2991,6 +2990,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -3010,24 +3011,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:49 GMT + - Mon, 11 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -3042,6 +3043,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -3061,24 +3064,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:50 GMT + - Mon, 11 Jan 2021 09:54:19 GMT expires: - '-1' pragma: @@ -3093,6 +3096,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -3112,24 +3117,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:51 GMT + - Mon, 11 Jan 2021 09:54:20 GMT expires: - '-1' pragma: @@ -3144,6 +3149,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -3163,24 +3170,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:53 GMT + - Mon, 11 Jan 2021 09:54:22 GMT expires: - '-1' pragma: @@ -3195,6 +3202,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -3214,24 +3223,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:54 GMT + - Mon, 11 Jan 2021 09:54:23 GMT expires: - '-1' pragma: @@ -3246,6 +3255,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -3265,24 +3276,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:56 GMT + - Mon, 11 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -3297,6 +3308,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -3316,24 +3329,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:57 GMT + - Mon, 11 Jan 2021 09:54:25 GMT expires: - '-1' pragma: @@ -3348,6 +3361,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -3367,24 +3382,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:58 GMT + - Mon, 11 Jan 2021 09:54:26 GMT expires: - '-1' pragma: @@ -3399,6 +3414,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '17' x-powered-by: - ASP.NET status: @@ -3418,24 +3435,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:00:59 GMT + - Mon, 11 Jan 2021 09:54:29 GMT expires: - '-1' pragma: @@ -3450,6 +3467,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '15' x-powered-by: - ASP.NET status: @@ -3469,24 +3488,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:00 GMT + - Mon, 11 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -3501,6 +3520,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '14' x-powered-by: - ASP.NET status: @@ -3520,24 +3541,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:02 GMT + - Mon, 11 Jan 2021 09:54:31 GMT expires: - '-1' pragma: @@ -3552,6 +3573,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '12' x-powered-by: - ASP.NET status: @@ -3571,24 +3594,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:03 GMT + - Mon, 11 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -3603,6 +3626,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '10' x-powered-by: - ASP.NET status: @@ -3622,24 +3647,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:04 GMT + - Mon, 11 Jan 2021 09:54:33 GMT expires: - '-1' pragma: @@ -3654,6 +3679,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' x-powered-by: - ASP.NET status: @@ -3673,24 +3700,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"InProgress","startTime":"2021-01-11T09:53:53.383921Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:05 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -3705,6 +3732,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '7' x-powered-by: - ASP.NET status: @@ -3724,24 +3753,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6597e030-5d58-4b53-8a63-a60d87dec7e1?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6597e030-5d58-4b53-8a63-a60d87dec7e1","name":"6597e030-5d58-4b53-8a63-a60d87dec7e1","status":"Succeeded","startTime":"2021-01-11T09:53:53.383921Z","endTime":"2021-01-11T09:53:53.383921Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d74c2945-133e-4fd0-ac92-0fcb17deb590"}}' headers: cache-control: - no-cache content-length: - - '188' + - '302' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:07 GMT + - Mon, 11 Jan 2021 09:54:36 GMT expires: - '-1' pragma: @@ -3756,6 +3785,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '5' x-powered-by: - ASP.NET status: @@ -3775,30 +3806,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d74c2945-133e-4fd0-ac92-0fcb17deb590?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d74c2945-133e-4fd0-ac92-0fcb17deb590","name":"d74c2945-133e-4fd0-ac92-0fcb17deb590","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.143961S","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-01-11T09:53:53.383921Z","endTime":"2021-01-11T09:54:35.527882Z","activityId":"d4d95f09-53f2-11eb-8007-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '943' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:08 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -3807,6 +3841,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3820,30 +3856,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:09 GMT + - Mon, 11 Jan 2021 09:54:37 GMT expires: - '-1' pragma: @@ -3858,62 +3894,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-10T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/backup?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationsStatus/3441ba88-f663-4875-89e1-bd9c2cae066f?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:01:10 GMT + - Mon, 11 Jan 2021 09:54: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/protectedItems/AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationResults/3441ba88-f663-4875-89e1-bd9c2cae066f?api-version=2020-10-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: + - '1193' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3922,30 +3963,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3441ba88-f663-4875-89e1-bd9c2cae066f?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3441ba88-f663-4875-89e1-bd9c2cae066f","name":"3441ba88-f663-4875-89e1-bd9c2cae066f","status":"Succeeded","startTime":"2021-01-11T09:54:38.2691247Z","endTime":"2021-01-11T09:54:38.2691247Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9b083a5b-3566-438a-974c-3560741c53c8"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:11 GMT + - Mon, 11 Jan 2021 09:54:38 GMT expires: - '-1' pragma: @@ -3960,6 +4001,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3973,36 +4016,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8","name":"9b083a5b-3566-438a-974c-3560741c53c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT0.8605972S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:54:38.2691247Z","activityId":"04038835-53f3-11eb-8473-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:12 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -4011,6 +4057,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -4024,36 +4072,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8?api-version=2020-10-01 response: body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8","name":"9b083a5b-3566-438a-974c-3560741c53c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2390865S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:54:38.2691247Z","activityId":"04038835-53f3-11eb-8473-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:01:14 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -4062,6 +4113,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -4075,2670 +4128,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"InProgress","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/1569bf45-43a4-4b7a-95d6-f56a938922f1?api-version=2016-12-01 - response: - body: - string: '{"id":"1569bf45-43a4-4b7a-95d6-f56a938922f1","name":"1569bf45-43a4-4b7a-95d6-f56a938922f1","status":"Succeeded","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"2019-11-27T08:00:40.7527811Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f5fe3118-b74a-41e4-950c-a7c54be9b6b2"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/f5fe3118-b74a-41e4-950c-a7c54be9b6b2?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fe3118-b74a-41e4-950c-a7c54be9b6b2","name":"f5fe3118-b74a-41e4-950c-a7c54be9b6b2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.8004131S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:00:40.7527811Z","endTime":"2019-11-27T08:01:23.5531942Z","activityId":"e3619a70-10eb-11ea-98de-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '922' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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: - - -g -v -i -c --backup-management-type --retain-until --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1230' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2019-12-27T00:00:00.000Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection backup-now - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000004/backup?api-version=2016-12-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;clitest-item000004/operationsStatus/36d98a5a-541b-45c9-b274-a0113eef2578?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:01: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/36d98a5a-541b-45c9-b274-a0113eef2578?api-version=2016-12-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: - - -g -v -i -c --backup-management-type --retain-until --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/36d98a5a-541b-45c9-b274-a0113eef2578?api-version=2016-12-01 - response: - body: - string: '{"id":"36d98a5a-541b-45c9-b274-a0113eef2578","name":"36d98a5a-541b-45c9-b274-a0113eef2578","status":"InProgress","startTime":"2019-11-27T08:01:26.6228871Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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: - - -g -v -i -c --backup-management-type --retain-until --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/36d98a5a-541b-45c9-b274-a0113eef2578?api-version=2016-12-01 - response: - body: - string: '{"id":"36d98a5a-541b-45c9-b274-a0113eef2578","name":"36d98a5a-541b-45c9-b274-a0113eef2578","status":"Succeeded","startTime":"2019-11-27T08:01:26.6228871Z","endTime":"2019-11-27T08:01:26.6228871Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-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: - - -g -v -i -c --backup-management-type --retain-until --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","name":"6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9195392S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:01:26.6228871Z","activityId":"1bfb0970-10ec-11ea-8796-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","name":"6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3616879S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:01:26.6228871Z","activityId":"1bfb0970-10ec-11ea-8796-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","name":"6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5769671S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:01:26.6228871Z","activityId":"1bfb0970-10ec-11ea-8796-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:01: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","name":"6f4c1df6-16e2-40f1-ab4f-559bfb2b5b9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3349947S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2019-11-27T08:01:26.6228871Z","endTime":"2019-11-27T08:01:28.9578818Z","activityId":"1bfb0970-10ec-11ea-8796-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '952' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 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-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 -c -i --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:01:26.6228871Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-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 -c -i --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints?api-version=2019-06-15 - 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;clitest-item000004/recoveryPoints/11336945629836","name":"11336945629836","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:01:27Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:01:27.0000000Z","recoveryPointSizeInGB":0}}]}' - headers: - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -n --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:01:26.6228871Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -n --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints/11336945629836?api-version=2019-06-15 - 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/protectedItems/AzureFileShare;clitest-item000004/recoveryPoints/11336945629836","name":"11336945629836","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:01:27Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:01:27.0000000Z","recoveryPointSizeInGB":0}}' - headers: - cache-control: - - no-cache - content-length: - - '812' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-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 -c -i --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:01:26.6228871Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-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 -c -i --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints?api-version=2019-06-15 - 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;clitest-item000004/recoveryPoints/11336945629836","name":"11336945629836","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:01:27Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:01:27.0000000Z","recoveryPointSizeInGB":0}}]}' - headers: - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-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: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:01:26.6228871Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2019-12-27T00:00:00.000Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection backup-now - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000004/backup?api-version=2016-12-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;clitest-item000004/operationsStatus/607ee710-549e-44ed-b745-efbf60e420b8?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/607ee710-549e-44ed-b745-efbf60e420b8?api-version=2016-12-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - 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: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/607ee710-549e-44ed-b745-efbf60e420b8?api-version=2016-12-01 - response: - body: - string: '{"id":"607ee710-549e-44ed-b745-efbf60e420b8","name":"607ee710-549e-44ed-b745-efbf60e420b8","status":"InProgress","startTime":"2019-11-27T08:02:35.2389543Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection backup-now - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/607ee710-549e-44ed-b745-efbf60e420b8?api-version=2016-12-01 - response: - body: - string: '{"id":"607ee710-549e-44ed-b745-efbf60e420b8","name":"607ee710-549e-44ed-b745-efbf60e420b8","status":"Succeeded","startTime":"2019-11-27T08:02:35.2389543Z","endTime":"2019-11-27T08:02:35.2389543Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a04e03ec-5838-436f-b5e7-e665c2107b68"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-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: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/a04e03ec-5838-436f-b5e7-e665c2107b68?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04e03ec-5838-436f-b5e7-e665c2107b68","name":"a04e03ec-5838-436f-b5e7-e665c2107b68","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9614746S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:02:35.2389543Z","activityId":"4498f52e-10ec-11ea-aaa3-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/a04e03ec-5838-436f-b5e7-e665c2107b68?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04e03ec-5838-436f-b5e7-e665c2107b68","name":"a04e03ec-5838-436f-b5e7-e665c2107b68","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.4088145S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:02:35.2389543Z","activityId":"4498f52e-10ec-11ea-aaa3-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/a04e03ec-5838-436f-b5e7-e665c2107b68?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04e03ec-5838-436f-b5e7-e665c2107b68","name":"a04e03ec-5838-436f-b5e7-e665c2107b68","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.6805363S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:02:35.2389543Z","activityId":"4498f52e-10ec-11ea-aaa3-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:02: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/a04e03ec-5838-436f-b5e7-e665c2107b68?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a04e03ec-5838-436f-b5e7-e665c2107b68","name":"a04e03ec-5838-436f-b5e7-e665c2107b68","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT27.6627573S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2019-11-27T08:02:35.2389543Z","endTime":"2019-11-27T08:03:02.9017116Z","activityId":"4498f52e-10ec-11ea-aaa3-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '953' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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 -c -i --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:02:35.2389543Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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 -c -i --backup-management-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints?api-version=2019-06-15 - 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;clitest-item000004/recoveryPoints/6264815369438","name":"6264815369438","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:03:00Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:03:00.0000000Z","recoveryPointSizeInGB":0}},{"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;clitest-item000004/recoveryPoints/11336945629836","name":"11336945629836","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:01:27Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:01:27.0000000Z","recoveryPointSizeInGB":0}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1635' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:02:35.2389543Z","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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1278' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:03:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2019-05-13 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - 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: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - 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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 - response: - body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:03:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8","name":"9b083a5b-3566-438a-974c-3560741c53c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.5504313S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:54:38.2691247Z","activityId":"04038835-53f3-11eb-8473-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:01 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6747,6 +4169,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6760,36 +4184,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b083a5b-3566-438a-974c-3560741c53c8","name":"9b083a5b-3566-438a-974c-3560741c53c8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.0723483S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-01-11T09:54:38.2691247Z","endTime":"2021-01-11T09:54:40.341473Z","activityId":"04038835-53f3-11eb-8473-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '975' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:02 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -6798,6 +4225,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6811,30 +4240,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:54:38.2691247Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:03 GMT + - Mon, 11 Jan 2021 09:55:41 GMT expires: - '-1' pragma: @@ -6849,6 +4278,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6862,30 +4293,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261222334551817255","name":"2261222334551817255","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:54:39Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:54:39.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '874' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:04 GMT + - Mon, 11 Jan 2021 09:55:41 GMT expires: - '-1' pragma: @@ -6900,6 +4331,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6913,30 +4346,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:54:38.2691247Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:06 GMT + - Mon, 11 Jan 2021 09:55:42 GMT expires: - '-1' pragma: @@ -6951,6 +4384,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6964,30 +4399,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261222334551817255?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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/protectedItems/AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261222334551817255","name":"2261222334551817255","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:54:39Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:54:39.0000000Z","recoveryPointSizeInGB":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '862' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:07 GMT + - Mon, 11 Jan 2021 09:55:43 GMT expires: - '-1' pragma: @@ -7002,6 +4437,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -7015,30 +4452,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:54:38.2691247Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:08 GMT + - Mon, 11 Jan 2021 09:55:44 GMT expires: - '-1' pragma: @@ -7053,6 +4490,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -7066,30 +4505,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261222334551817255","name":"2261222334551817255","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:54:39Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:54:39.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '874' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:09 GMT + - Mon, 11 Jan 2021 09:55:44 GMT expires: - '-1' pragma: @@ -7104,6 +4543,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -7117,30 +4558,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:54:38.2691247Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:10 GMT + - Mon, 11 Jan 2021 09:55:45 GMT expires: - '-1' pragma: @@ -7155,62 +4596,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-10T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/backup?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationsStatus/0afc954a-dd65-4cf4-84f7-793821d594a3?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:04:12 GMT + - Mon, 11 Jan 2021 09:55: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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/operationResults/0afc954a-dd65-4cf4-84f7-793821d594a3?api-version=2020-10-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: + - '1196' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7219,30 +4665,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0afc954a-dd65-4cf4-84f7-793821d594a3?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0afc954a-dd65-4cf4-84f7-793821d594a3","name":"0afc954a-dd65-4cf4-84f7-793821d594a3","status":"Succeeded","startTime":"2021-01-11T09:55:45.9061969Z","endTime":"2021-01-11T09:55:45.9061969Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"961da4d2-6c00-4d07-9daf-273e1e42ebb8"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:13 GMT + - Mon, 11 Jan 2021 09:55:46 GMT expires: - '-1' pragma: @@ -7257,6 +4703,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '18' x-powered-by: - ASP.NET status: @@ -7270,36 +4718,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8","name":"961da4d2-6c00-4d07-9daf-273e1e42ebb8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3252274S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:45.9061969Z","activityId":"2c56c772-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:14 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -7308,6 +4759,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -7321,36 +4774,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8","name":"961da4d2-6c00-4d07-9daf-273e1e42ebb8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.7711315S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:45.9061969Z","activityId":"2c56c772-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:15 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -7359,6 +4815,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -7372,36 +4830,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8","name":"961da4d2-6c00-4d07-9daf-273e1e42ebb8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.0443097S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:45.9061969Z","activityId":"2c56c772-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:17 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -7410,6 +4871,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -7423,36 +4886,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/961da4d2-6c00-4d07-9daf-273e1e42ebb8","name":"961da4d2-6c00-4d07-9daf-273e1e42ebb8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.7708547S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-01-11T09:55:45.9061969Z","endTime":"2021-01-11T09:55:48.6770516Z","activityId":"2c56c772-53f3-11eb-a11f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '976' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:18 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7461,6 +4927,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -7474,30 +4942,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:45.9061969Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:19 GMT + - Mon, 11 Jan 2021 09:56:49 GMT expires: - '-1' pragma: @@ -7512,6 +4980,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -7525,30 +4995,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261217792381807745","name":"2261217792381807745","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:55:46Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:55:46.0000000Z","recoveryPointSizeInGB":0}},{"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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2/recoveryPoints/2261222334551817255","name":"2261222334551817255","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:54:39Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:54:39.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1737' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:20 GMT + - Mon, 11 Jan 2021 09:56:49 GMT expires: - '-1' pragma: @@ -7563,6 +5033,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -7582,24 +5054,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + 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;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","name":"AzureFileShare;d473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:45.9061969Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:21 GMT + - Mon, 11 Jan 2021 09:56:49 GMT expires: - '-1' pragma: @@ -7614,6 +5086,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -7630,46 +5104,46 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + 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%3Bd473b0a0aabc8a8e332ceb6f17e49e7d0d529456cb2bf26b3c9c8461c5a2e5a2?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:04:23 GMT + - Mon, 11 Jan 2021 09:56:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-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-deletes: + - '14995' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7684,15 +5158,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7701,7 +5175,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:24 GMT + - Mon, 11 Jan 2021 09:56:51 GMT expires: - '-1' pragma: @@ -7716,6 +5190,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -7735,15 +5211,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7752,7 +5228,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:25 GMT + - Mon, 11 Jan 2021 09:56:52 GMT expires: - '-1' pragma: @@ -7767,6 +5243,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -7786,15 +5264,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7803,7 +5281,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:26 GMT + - Mon, 11 Jan 2021 09:56:53 GMT expires: - '-1' pragma: @@ -7818,6 +5296,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -7837,15 +5317,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7854,7 +5334,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:27 GMT + - Mon, 11 Jan 2021 09:56:54 GMT expires: - '-1' pragma: @@ -7869,6 +5349,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -7888,15 +5370,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7905,7 +5387,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:28 GMT + - Mon, 11 Jan 2021 09:56:55 GMT expires: - '-1' pragma: @@ -7920,6 +5402,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -7939,15 +5423,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7956,7 +5440,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:30 GMT + - Mon, 11 Jan 2021 09:56:57 GMT expires: - '-1' pragma: @@ -7971,6 +5455,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -7990,15 +5476,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"InProgress","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8007,7 +5493,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:31 GMT + - Mon, 11 Jan 2021 09:56:58 GMT expires: - '-1' pragma: @@ -8022,6 +5508,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -8041,24 +5529,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/14eb52b1-7cce-4884-9301-85e5ddf31768?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"14eb52b1-7cce-4884-9301-85e5ddf31768","name":"14eb52b1-7cce-4884-9301-85e5ddf31768","status":"Succeeded","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"2019-11-27T08:03:40.3997432Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b4d6b5a9-1a71-4dda-ad0a-e7c993d775f7"}}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:33 GMT + - Mon, 11 Jan 2021 09:56:59 GMT expires: - '-1' pragma: @@ -8073,6 +5561,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -8092,32 +5582,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b4d6b5a9-1a71-4dda-ad0a-e7c993d775f7?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b4d6b5a9-1a71-4dda-ad0a-e7c993d775f7","name":"b4d6b5a9-1a71-4dda-ad0a-e7c993d775f7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT52.2633636S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:03:40.3997432Z","endTime":"2019-11-27T08:04:32.6631068Z","activityId":"6ba2b13a-10ec-11ea-b268-186024943d4f"}}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"InProgress","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '882' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:34 GMT + - Mon, 11 Jan 2021 09:57: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: @@ -8126,6 +5614,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -8139,30 +5629,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5ae38b00-a6f3-4904-b92b-41485a1ff33b?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + string: '{"id":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","name":"5ae38b00-a6f3-4904-b92b-41485a1ff33b","status":"Succeeded","startTime":"2021-01-11T09:56:50.5379707Z","endTime":"2021-01-11T09:56:50.5379707Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d6f7ace5-b570-43f9-bab3-6e57a8104223"}}' headers: cache-control: - no-cache content-length: - - '880' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:34 GMT + - Mon, 11 Jan 2021 09:57:02 GMT expires: - '-1' pragma: @@ -8177,6 +5667,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -8190,49 +5682,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d6f7ace5-b570-43f9-bab3-6e57a8104223?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d6f7ace5-b570-43f9-bab3-6e57a8104223","name":"d6f7ace5-b570-43f9-bab3-6e57a8104223","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT11.8915188S","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-01-11T09:56:50.5379707Z","endTime":"2021-01-11T09:57:02.4294895Z","activityId":"52dc45cc-53f3-11eb-bb34-c8f750f92764"}}' 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '906' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:04:35 GMT + - Mon, 11 Jan 2021 09:57:03 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/b704a653-0e67-4b92-9421-085d0b1ae621?fabricName=Azure?api-version=2016-12-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-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8247,43 +5743,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:36 GMT + - Mon, 11 Jan 2021 09:57: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8295,41 +5793,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{}' + 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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:04:37 GMT + - Mon, 11 Jan 2021 09:57: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?fabricName=Azure?api-version=2020-10-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: + - '14995' x-powered-by: - ASP.NET status: @@ -8349,18 +5847,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8368,11 +5866,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:39 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8381,6 +5879,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -8400,18 +5900,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8419,11 +5919,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:40 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8432,6 +5932,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -8451,18 +5953,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8470,11 +5972,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:41 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8483,6 +5985,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -8502,18 +6006,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8521,11 +6025,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:42 GMT + - Mon, 11 Jan 2021 09:57:08 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8534,6 +6038,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -8553,18 +6059,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8572,11 +6078,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:43 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8585,6 +6091,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -8604,18 +6112,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8623,11 +6131,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:45 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8636,6 +6144,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -8655,18 +6165,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8674,11 +6184,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:46 GMT + - Mon, 11 Jan 2021 09:57:12 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8687,6 +6197,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -8706,18 +6218,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8725,11 +6237,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:47 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8738,6 +6250,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -8757,18 +6271,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8776,11 +6290,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:49 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8789,6 +6303,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -8808,18 +6324,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8827,11 +6343,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:50 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8840,6 +6356,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -8859,18 +6377,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8878,11 +6396,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:51 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8891,6 +6409,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -8910,18 +6430,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8929,11 +6449,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:53 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8942,6 +6462,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -8961,18 +6483,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8980,11 +6502,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:54 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -8993,6 +6515,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -9012,18 +6536,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9031,11 +6555,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:55 GMT + - Mon, 11 Jan 2021 09:57: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -9044,6 +6568,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -9063,18 +6589,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9082,11 +6608,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:56 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -9095,6 +6621,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -9114,18 +6642,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9133,11 +6661,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:57 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -9146,6 +6674,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -9165,18 +6695,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-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/b704a653-0e67-4b92-9421-085d0b1ae621?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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9184,11 +6714,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:04:58 GMT + - Mon, 11 Jan 2021 09:57: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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 pragma: - no-cache server: @@ -9197,6 +6727,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -9216,12 +6748,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/b704a653-0e67-4b92-9421-085d0b1ae621?api-version=2016-12-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/d4fdb093-1c91-494b-8fd7-4fc8afce4fdd?api-version=2020-10-01 response: body: string: '' @@ -9231,7 +6763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:05:00 GMT + - Mon, 11 Jan 2021 09:57:26 GMT expires: - '-1' pragma: @@ -9240,6 +6772,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -9259,12 +6793,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -9276,7 +6810,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:05:00 GMT + - Mon, 11 Jan 2021 09:59:07 GMT expires: - '-1' pragma: @@ -9291,6 +6825,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -9312,8 +6848,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -9327,7 +6863,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:05:04 GMT + - Mon, 11 Jan 2021 09:59:11 GMT expires: - '-1' pragma: @@ -9337,7 +6873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK 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 0b865980919..c82f05e429b 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T08%3A11%3A20.2692651Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-11T09%3A52%3A53.9717853Z''\"","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: - - '400' + - '484' content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:19 GMT + - Mon, 11 Jan 2021 09:52:54 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '208' status: code: 201 message: Created @@ -56,7 +56,8 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate CommandName: + - gzip, deflate + CommandName: - storage account show-connection-string Connection: - keep-alive @@ -65,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -82,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:41 GMT + - Mon, 11 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -97,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11995' status: code: 200 message: OK @@ -110,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Wed, 27 Nov 2019 08:11:42 GMT + - Mon, 11 Jan 2021 09:53:16 GMT x-ms-share-quota: - '1' x-ms-version: @@ -126,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:42 GMT + - Mon, 11 Jan 2021 09:53:16 GMT etag: - - '"0x8D773117016E17D"' + - '"0x8D8B616B842F458"' last-modified: - - Wed, 27 Nov 2019 08:11:42 GMT + - Mon, 11 Jan 2021 09:53:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -152,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -169,7 +167,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:42 GMT + - Mon, 11 Jan 2021 09:53:17 GMT expires: - '-1' pragma: @@ -184,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -192,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -210,17 +210,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:43 GMT + - Mon, 11 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -245,7 +245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' x-powered-by: - ASP.NET status: @@ -262,46 +262,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '' + string: '{"value":[]}' 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:11:44 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-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: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -316,32 +318,91 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + 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=2020-10-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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '23869' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:53: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: + - '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-azurefileshare + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:44 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' x-powered-by: - ASP.NET status: @@ -361,12 +422,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -376,17 +437,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:45 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -406,12 +469,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -421,17 +484,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:47 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -451,12 +516,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -466,17 +531,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:48 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -496,12 +563,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -511,17 +578,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:49 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -541,12 +610,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -556,17 +625,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:50 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -586,12 +657,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -601,17 +672,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:51 GMT + - Mon, 11 Jan 2021 09:53: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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -631,12 +704,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -646,17 +719,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:53 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache 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: @@ -676,12 +751,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' @@ -691,17 +766,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:11:54 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -721,33 +798,39 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/bd18951d-fb53-44aa-b6de-a60c8cedbbcd?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 08:11:55 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -762,43 +845,35 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/50286ecc-086a-4e8b-8b7e-06d52cc23a6b?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache - content-length: - - '12' - content-type: - - application/json date: - - Wed, 27 Nov 2019 08:11:56 GMT + - Mon, 11 Jan 2021 09:53: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: + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -813,24 +888,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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.rgrmh2lz6ecm;clitestdmj4nm22sh755p3zz","name":"StorageContainer;Storage;clitest.rgrmh2lz6ecm;clitestdmj4nm22sh755p3zz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdmj4nm22sh755p3zz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrmh2lz6ecm/providers/Microsoft.Storage/storageAccounts/clitestdmj4nm22sh755p3zz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","name":"StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgjjayztgdz3xm7unr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5urjhs4xm3/providers/Microsoft.Storage/storageAccounts/clitestgjjayztgdz3xm7unr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","name":"StorageContainer;Storage;clitest.rggtdz63pueq;clitestyo34dbwnyqgbc6yxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyo34dbwnyqgbc6yxe","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggtdz63pueq/providers/Microsoft.Storage/storageAccounts/clitestyo34dbwnyqgbc6yxe"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","name":"StorageContainer;Storage;clitest.rgjqluqqnhk6;clitestclnhc546p344yu7d6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestclnhc546p344yu7d6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqluqqnhk6/providers/Microsoft.Storage/storageAccounts/clitestclnhc546p344yu7d6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","name":"StorageContainer;Storage;clitest.rgnlcrm23nul;clitestqtpsymefcd7sld4t6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqtpsymefcd7sld4t6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnlcrm23nul/providers/Microsoft.Storage/storageAccounts/clitestqtpsymefcd7sld4t6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"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.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '6611' + - '26200' content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:55 GMT + - Mon, 11 Jan 2021 09:53:32 GMT expires: - '-1' pragma: @@ -845,14 +920,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -869,18 +946,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -888,11 +965,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:56 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -902,7 +979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1189' x-powered-by: - ASP.NET status: @@ -922,18 +999,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -941,11 +1018,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:57 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -954,6 +1031,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -973,18 +1052,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -992,11 +1071,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:58 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1005,6 +1084,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1024,18 +1105,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1043,11 +1124,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:11:59 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1056,6 +1137,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1075,18 +1158,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1094,11 +1177,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:00 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1107,6 +1190,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1126,18 +1211,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1145,11 +1230,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:01 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1158,6 +1243,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1177,18 +1264,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1196,11 +1283,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:03 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1209,6 +1296,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1228,18 +1317,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1247,11 +1336,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:04 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1260,6 +1349,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1279,18 +1370,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1298,11 +1389,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:05 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1311,6 +1402,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1330,18 +1423,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1349,11 +1442,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:06 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 pragma: - no-cache server: @@ -1362,6 +1455,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1381,43 +1476,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/a20792cd-1363-4ae8-b745-cda09a7d85d7?api-version=2020-10-01 response: body: - string: '{}' + 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"}}' 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:07 GMT + - Mon, 11 Jan 2021 09:53: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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: + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1432,43 +1529,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{}' + 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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:10 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1483,38 +1582,91 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:11 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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: + - '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 + Content-Length: + - '0' + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 11 Jan 2021 09:54: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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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: @@ -1534,18 +1686,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1553,11 +1705,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:12 GMT + - Mon, 11 Jan 2021 09:54: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-01 pragma: - no-cache server: @@ -1566,6 +1718,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1585,18 +1739,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1604,11 +1758,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:13 GMT + - Mon, 11 Jan 2021 09:54: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-01 pragma: - no-cache server: @@ -1617,6 +1771,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1636,18 +1792,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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/7ea4deb8-fa08-4128-b217-52b50d06b140?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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1655,11 +1811,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:14 GMT + - Mon, 11 Jan 2021 09:54: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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-01 pragma: - no-cache server: @@ -1668,6 +1824,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1687,43 +1845,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/7ea4deb8-fa08-4128-b217-52b50d06b140?api-version=2016-12-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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + 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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '868' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:15 GMT + - Mon, 11 Jan 2021 09:54: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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: + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1738,43 +1898,37 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + 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/490a4799-0862-4bd8-bf16-ed53cbfa76c2?api-version=2020-10-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":["2019-11-27T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '' headers: cache-control: - no-cache - content-length: - - '740' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:12:16 GMT + - Mon, 11 Jan 2021 09:54: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: + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -1789,24 +1943,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[]}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","name":"azurefileshare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","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 content-length: - - '12' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 08:12:16 GMT + - Mon, 11 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -1821,13 +1975,17 @@ interactions: - 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 + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -1838,32 +1996,34 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + 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%3B11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03?api-version=2020-10-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?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/protectedItems/azurefileshare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationsStatus/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:12:17 GMT + - Mon, 11 Jan 2021 09:54: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationResults/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1871,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' x-powered-by: - ASP.NET status: @@ -1891,2774 +2051,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/operationResults/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12:49 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:12: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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/97393ccb-f825-40dd-84cc-76c5a3edeb2a?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 08:13:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-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;clitest-item000004","name":"azurefileshare;clitest-item000004","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 - content-length: - - '959' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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;clitest-item000004/operationsStatus/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:13: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/protectedItems/azurefileshare;clitest-item000004/operationResults/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2019-05-13 - 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 protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 - response: - body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:21 GMT + - Mon, 11 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -4673,6 +2083,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -4692,24 +2104,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:22 GMT + - Mon, 11 Jan 2021 09:54:25 GMT expires: - '-1' pragma: @@ -4724,6 +2136,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -4743,24 +2157,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:24 GMT + - Mon, 11 Jan 2021 09:54:26 GMT expires: - '-1' pragma: @@ -4775,6 +2189,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -4794,24 +2210,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:25 GMT + - Mon, 11 Jan 2021 09:54:28 GMT expires: - '-1' pragma: @@ -4826,6 +2242,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -4845,24 +2263,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:26 GMT + - Mon, 11 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -4877,6 +2295,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -4896,24 +2316,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:27 GMT + - Mon, 11 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -4928,6 +2348,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -4947,24 +2369,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:28 GMT + - Mon, 11 Jan 2021 09:54:33 GMT expires: - '-1' pragma: @@ -4979,6 +2401,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -4998,24 +2422,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:30 GMT + - Mon, 11 Jan 2021 09:54:34 GMT expires: - '-1' pragma: @@ -5030,6 +2454,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -5049,24 +2475,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:31 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -5081,6 +2507,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -5100,24 +2528,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:32 GMT + - Mon, 11 Jan 2021 09:54:36 GMT expires: - '-1' pragma: @@ -5132,6 +2560,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -5151,24 +2581,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:33 GMT + - Mon, 11 Jan 2021 09:54:38 GMT expires: - '-1' pragma: @@ -5183,6 +2613,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -5202,24 +2634,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:34 GMT + - Mon, 11 Jan 2021 09:54:39 GMT expires: - '-1' pragma: @@ -5234,6 +2666,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -5253,24 +2687,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:36 GMT + - Mon, 11 Jan 2021 09:54:40 GMT expires: - '-1' pragma: @@ -5285,6 +2719,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -5304,24 +2740,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:37 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' pragma: @@ -5336,6 +2772,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -5355,24 +2793,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:38 GMT + - Mon, 11 Jan 2021 09:54:43 GMT expires: - '-1' pragma: @@ -5387,6 +2825,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -5406,24 +2846,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:39 GMT + - Mon, 11 Jan 2021 09:54:44 GMT expires: - '-1' pragma: @@ -5438,6 +2878,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -5457,24 +2899,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:40 GMT + - Mon, 11 Jan 2021 09:54:45 GMT expires: - '-1' pragma: @@ -5489,6 +2931,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -5508,24 +2952,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:41 GMT + - Mon, 11 Jan 2021 09:54:47 GMT expires: - '-1' pragma: @@ -5540,6 +2984,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -5559,24 +3005,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:43 GMT + - Mon, 11 Jan 2021 09:54:48 GMT expires: - '-1' pragma: @@ -5591,6 +3037,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -5610,24 +3058,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"InProgress","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:44 GMT + - Mon, 11 Jan 2021 09:54:50 GMT expires: - '-1' pragma: @@ -5642,6 +3090,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -5661,24 +3111,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/46fd4c38-99de-42e4-9f88-6f792e98b342?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"46fd4c38-99de-42e4-9f88-6f792e98b342","name":"46fd4c38-99de-42e4-9f88-6f792e98b342","status":"Succeeded","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"2019-11-27T08:13:01.5678312Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"24e5c8c2-a84b-4307-ae4d-0b10129dcbec"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:45 GMT + - Mon, 11 Jan 2021 09:54:52 GMT expires: - '-1' pragma: @@ -5693,6 +3143,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -5712,183 +3164,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/24e5c8c2-a84b-4307-ae4d-0b10129dcbec?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/24e5c8c2-a84b-4307-ae4d-0b10129dcbec","name":"24e5c8c2-a84b-4307-ae4d-0b10129dcbec","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.3888802S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:13:01.5678312Z","endTime":"2019-11-27T08:13:44.9567114Z","activityId":"8ca9cbb8-10ed-11ea-8b85-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '922' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-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: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2019-06-15&$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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1230' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:13: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2019-12-27T00:00:00.000Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection backup-now - Connection: - - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000004/backup?api-version=2016-12-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;clitest-item000004/operationsStatus/77e07d89-0c29-46ff-bd12-7e7ee6fbb39a?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:13: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/77e07d89-0c29-46ff-bd12-7e7ee6fbb39a?api-version=2016-12-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - 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: - - -g -v -c -i --retain-until --backup-management-type --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/77e07d89-0c29-46ff-bd12-7e7ee6fbb39a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"77e07d89-0c29-46ff-bd12-7e7ee6fbb39a","name":"77e07d89-0c29-46ff-bd12-7e7ee6fbb39a","status":"InProgress","startTime":"2019-11-27T08:13:47.5537442Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:47 GMT + - Mon, 11 Jan 2021 09:54:53 GMT expires: - '-1' pragma: @@ -5903,6 +3196,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -5916,30 +3211,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/77e07d89-0c29-46ff-bd12-7e7ee6fbb39a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"77e07d89-0c29-46ff-bd12-7e7ee6fbb39a","name":"77e07d89-0c29-46ff-bd12-7e7ee6fbb39a","status":"Succeeded","startTime":"2019-11-27T08:13:47.5537442Z","endTime":"2019-11-27T08:13:47.5537442Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"517555bd-2740-4d66-a8a5-32cd462e1366"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:49 GMT + - Mon, 11 Jan 2021 09:54:54 GMT expires: - '-1' pragma: @@ -5954,6 +3249,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -5967,39 +3264,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/517555bd-2740-4d66-a8a5-32cd462e1366?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/517555bd-2740-4d66-a8a5-32cd462e1366","name":"517555bd-2740-4d66-a8a5-32cd462e1366","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9726999S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:13:47.5537442Z","activityId":"d5ae7c9c-10ed-11ea-abd3-186024943d4f"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '913' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:49 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6008,6 +3302,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -6021,39 +3317,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/517555bd-2740-4d66-a8a5-32cd462e1366?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/517555bd-2740-4d66-a8a5-32cd462e1366","name":"517555bd-2740-4d66-a8a5-32cd462e1366","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.7344671S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:13:47.5537442Z","activityId":"d5ae7c9c-10ed-11ea-abd3-186024943d4f"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '913' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:50 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6062,6 +3355,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -6075,39 +3370,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/517555bd-2740-4d66-a8a5-32cd462e1366?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/517555bd-2740-4d66-a8a5-32cd462e1366","name":"517555bd-2740-4d66-a8a5-32cd462e1366","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.9335729S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2019-11-27T08:13:47.5537442Z","activityId":"d5ae7c9c-10ed-11ea-abd3-186024943d4f"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '913' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:13:50 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6116,6 +3408,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -6129,39 +3423,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/517555bd-2740-4d66-a8a5-32cd462e1366?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/517555bd-2740-4d66-a8a5-32cd462e1366","name":"517555bd-2740-4d66-a8a5-32cd462e1366","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT31.4164765S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2019-11-27T08:13:47.5537442Z","endTime":"2019-11-27T08:14:18.9702207Z","activityId":"d5ae7c9c-10ed-11ea-abd3-186024943d4f"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '953' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:20 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6170,6 +3461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -6183,30 +3476,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:13:47.5537442Z","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"}}]}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1278' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:50 GMT + - Mon, 11 Jan 2021 09:55:00 GMT expires: - '-1' pragma: @@ -6221,6 +3514,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -6234,30 +3529,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 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;clitest-item000004/recoveryPoints/24846742269114","name":"24846742269114","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2019-11-27T08:14:17Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2019-11-27T08:14:17.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '824' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:51 GMT + - Mon, 11 Jan 2021 09:55:01 GMT expires: - '-1' pragma: @@ -6272,6 +3567,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -6285,30 +3582,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:13:47.5537442Z","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"}}]}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1278' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:52 GMT + - Mon, 11 Jan 2021 09:55:02 GMT expires: - '-1' pragma: @@ -6323,6 +3620,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -6336,44 +3635,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found."}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '189' + - '187' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 08:14:51 GMT + - Mon, 11 Jan 2021 09: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -6382,36 +3688,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T08:11:22.0958227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T08:11:22.0332861Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"InProgress","startTime":"2021-01-11T09:54:24.514437Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '919' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:52 GMT + - Mon, 11 Jan 2021 09:55:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6420,64 +3726,66 @@ interactions: - 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: 'b''b\''{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '348' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bclitest-item000004/recoveryPoints/24846742269114/restore?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1735868b-b4fa-4bbc-a684-858ad54c913c?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"1735868b-b4fa-4bbc-a684-858ad54c913c","name":"1735868b-b4fa-4bbc-a684-858ad54c913c","status":"Succeeded","startTime":"2021-01-11T09:54:24.514437Z","endTime":"2021-01-11T09:54:24.514437Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5d804d0d-ea4b-40f0-a17c-c49f4cfb79ba"}}' 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;clitest-item000004/operationsStatus/d908e779-1651-41a4-9836-90c7de6f08a9?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '302' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:14:53 GMT + - Mon, 11 Jan 2021 09:55: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/protectedItems/AzureFileShare;clitest-item000004/operationResults/d908e779-1651-41a4-9836-90c7de6f08a9?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.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' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6486,36 +3794,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d908e779-1651-41a4-9836-90c7de6f08a9?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5d804d0d-ea4b-40f0-a17c-c49f4cfb79ba?api-version=2020-10-01 response: body: - string: '{"id":"d908e779-1651-41a4-9836-90c7de6f08a9","name":"d908e779-1651-41a4-9836-90c7de6f08a9","status":"InProgress","startTime":"2019-11-27T08:14:53.6487405Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5d804d0d-ea4b-40f0-a17c-c49f4cfb79ba","name":"5d804d0d-ea4b-40f0-a17c-c49f4cfb79ba","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.0150897S","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-01-11T09:54:24.514437Z","endTime":"2021-01-11T09:55:06.5295267Z","activityId":"d4ed86f4-53f2-11eb-8ada-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '945' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:54 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -6524,6 +3835,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6537,30 +3850,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/d908e779-1651-41a4-9836-90c7de6f08a9?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d908e779-1651-41a4-9836-90c7de6f08a9","name":"d908e779-1651-41a4-9836-90c7de6f08a9","status":"Succeeded","startTime":"2019-11-27T08:14:53.6487405Z","endTime":"2019-11-27T08:14:53.6487405Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3b9b5c43-4f15-4727-8e1f-f190f01489b9"}}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","name":"AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","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"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:55 GMT + - Mon, 11 Jan 2021 09:55:08 GMT expires: - '-1' pragma: @@ -6575,67 +3888,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-10T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3b9b5c43-4f15-4727-8e1f-f190f01489b9?api-version=2019-06-15 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/backup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9b5c43-4f15-4727-8e1f-f190f01489b9","name":"3b9b5c43-4f15-4727-8e1f-f190f01489b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1937925S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2019-11-27T08:14:53.6487405Z","activityId":"fc83b538-10ed-11ea-a964-186024943d4f"}}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationsStatus/aed4b2d5-bc53-4dd0-bf42-e51b754f7eb4?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1117' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:14:55 GMT + - Mon, 11 Jan 2021 09:55: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/protectedItems/AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationResults/aed4b2d5-bc53-4dd0-bf42-e51b754f7eb4?api-version=2020-10-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-writes: + - '1195' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6644,41 +3957,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3b9b5c43-4f15-4727-8e1f-f190f01489b9?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aed4b2d5-bc53-4dd0-bf42-e51b754f7eb4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9b5c43-4f15-4727-8e1f-f190f01489b9","name":"3b9b5c43-4f15-4727-8e1f-f190f01489b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.7645007S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2019-11-27T08:14:53.6487405Z","activityId":"fc83b538-10ed-11ea-a964-186024943d4f"}}' + string: '{"id":"aed4b2d5-bc53-4dd0-bf42-e51b754f7eb4","name":"aed4b2d5-bc53-4dd0-bf42-e51b754f7eb4","status":"Succeeded","startTime":"2021-01-11T09:55:08.8821347Z","endTime":"2021-01-11T09:55:08.8821347Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"031c7c6f-8100-46b0-b195-3fb7a94ff99c"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:56 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -6687,6 +3995,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -6700,34 +4010,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3b9b5c43-4f15-4727-8e1f-f190f01489b9?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9b5c43-4f15-4727-8e1f-f190f01489b9","name":"3b9b5c43-4f15-4727-8e1f-f190f01489b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.9961072S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2019-11-27T08:14:53.6487405Z","activityId":"fc83b538-10ed-11ea-a964-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c","name":"031c7c6f-8100-46b0-b195-3fb7a94ff99c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT0.8744494S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:08.8821347Z","activityId":"163ca545-53f3-11eb-b2dc-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1117' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:14:56 GMT + - Mon, 11 Jan 2021 09:55:10 GMT expires: - '-1' pragma: @@ -6743,6 +4051,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6762,28 +4072,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3b9b5c43-4f15-4727-8e1f-f190f01489b9?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9b5c43-4f15-4727-8e1f-f190f01489b9","name":"3b9b5c43-4f15-4727-8e1f-f190f01489b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.2220888S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2019-11-27T08:14:53.6487405Z","activityId":"fc83b538-10ed-11ea-a964-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c","name":"031c7c6f-8100-46b0-b195-3fb7a94ff99c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1506535S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:08.8821347Z","activityId":"163ca545-53f3-11eb-b2dc-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1118' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:15:26 GMT + - Mon, 11 Jan 2021 09:55:10 GMT expires: - '-1' pragma: @@ -6799,6 +4107,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6818,28 +4128,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/3b9b5c43-4f15-4727-8e1f-f190f01489b9?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9b5c43-4f15-4727-8e1f-f190f01489b9","name":"3b9b5c43-4f15-4727-8e1f-f190f01489b9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT50.6446938S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"11/27/2019 - 8:14:18 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2019-11-27T08:14:53.6487405Z","endTime":"2019-11-27T08:15:44.2934343Z","activityId":"fc83b538-10ed-11ea-a964-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c","name":"031c7c6f-8100-46b0-b195-3fb7a94ff99c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.4890218S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-01-11T09:55:08.8821347Z","activityId":"163ca545-53f3-11eb-b2dc-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1209' + - '937' content-type: - application/json date: - - Wed, 27 Nov 2019 08:15:57 GMT + - Mon, 11 Jan 2021 09:55:11 GMT expires: - '-1' pragma: @@ -6855,6 +4163,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6868,36 +4178,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2019-11-27T08:13:47.5537442Z","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/031c7c6f-8100-46b0-b195-3fb7a94ff99c","name":"031c7c6f-8100-46b0-b195-3fb7a94ff99c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.219713S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-01-11T09:55:08.8821347Z","endTime":"2021-01-11T09:55:11.1018477Z","activityId":"163ca545-53f3-11eb-b2dc-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1278' + - '975' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:27 GMT + - Mon, 11 Jan 2021 09:55: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: @@ -6906,6 +4219,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6919,49 +4234,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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%3Bclitest-item000004?api-version=2019-06-15 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","name":"AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:08.8821347Z","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"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2019-05-13 cache-control: - no-cache content-length: - - '0' + - '1525' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:16:27 GMT + - Mon, 11 Jan 2021 09:56:13 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2019-05-13 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6970,30 +4287,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-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%3B11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/recoveryPoints/2261213255221507873","name":"2261213255221507873","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-01-11T09:55:09Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-01-11T09:55:09.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '874' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:27 GMT + - Mon, 11 Jan 2021 09:56:13 GMT expires: - '-1' pragma: @@ -7008,6 +4325,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -7021,30 +4340,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","name":"AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:08.8821347Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1525' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:29 GMT + - Mon, 11 Jan 2021 09:56:14 GMT expires: - '-1' pragma: @@ -7059,6 +4378,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -7072,49 +4393,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '188' + - '257' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:16:30 GMT + - Mon, 11 Jan 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-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -7123,36 +4440,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-11T09:52:56.8696457Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-11T09:52:56.7758929Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '188' + - '919' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:31 GMT + - Mon, 11 Jan 2021 09:56:15 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7161,62 +4478,64 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive + Content-Length: + - '348' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + 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/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/recoveryPoints/2261213255221507873/restore?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationsStatus/53038ea0-5a64-4b50-92b0-666024cc1c92?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:16:33 GMT + - Mon, 11 Jan 2021 09:56: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/protectedItems/AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03/operationResults/53038ea0-5a64-4b50-92b0-666024cc1c92?api-version=2020-10-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: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7225,30 +4544,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/53038ea0-5a64-4b50-92b0-666024cc1c92?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"53038ea0-5a64-4b50-92b0-666024cc1c92","name":"53038ea0-5a64-4b50-92b0-666024cc1c92","status":"Succeeded","startTime":"2021-01-11T09:56:16.4649008Z","endTime":"2021-01-11T09:56:16.4649008Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:34 GMT + - Mon, 11 Jan 2021 09:56:16 GMT expires: - '-1' pragma: @@ -7263,6 +4582,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -7276,36 +4597,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04","name":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2080987S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:16.4649008Z","activityId":"3da91fda-53f3-11eb-a839-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1141' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:35 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7314,6 +4640,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -7327,36 +4655,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04","name":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.7025777S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:16.4649008Z","activityId":"3da91fda-53f3-11eb-a839-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1141' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:36 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7365,6 +4698,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -7378,36 +4713,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04","name":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.0039061S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:16.4649008Z","activityId":"3da91fda-53f3-11eb-a839-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1141' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:37 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7416,6 +4756,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -7429,36 +4771,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04","name":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.3374601S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-01-11T09:56:16.4649008Z","activityId":"3da91fda-53f3-11eb-a839-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1142' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:39 GMT + - Mon, 11 Jan 2021 09:56: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: @@ -7467,6 +4814,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -7480,36 +4829,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c50d578e-ca1d-4f90-81e3-ff3cf4184a04","name":"c50d578e-ca1d-4f90-81e3-ff3cf4184a04","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT44.3936665S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"1/11/2021 + 9:55:10 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-01-11T09:56:16.4649008Z","endTime":"2021-01-11T09:57:00.8585673Z","activityId":"3da91fda-53f3-11eb-a839-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1232' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:40 GMT + - Mon, 11 Jan 2021 09:57: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: @@ -7518,6 +4872,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -7537,24 +4893,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","name":"AzureFileShare;11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03","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":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-01-11T09:55:08.8821347Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1677' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:41 GMT + - Mon, 11 Jan 2021 09:57:49 GMT expires: - '-1' pragma: @@ -7569,6 +4925,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -7585,46 +4943,46 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + 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%3B11ab12bcffd0c7032894c4ff8f856f89f2f6831bb1d422395c3b8ba804df6f03?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:16:42 GMT + - Mon, 11 Jan 2021 09:57:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-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-deletes: + - '14997' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7639,15 +4997,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7656,7 +5014,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:43 GMT + - Mon, 11 Jan 2021 09:57:50 GMT expires: - '-1' pragma: @@ -7671,6 +5029,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -7690,15 +5050,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7707,7 +5067,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:45 GMT + - Mon, 11 Jan 2021 09:57:52 GMT expires: - '-1' pragma: @@ -7722,6 +5082,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -7741,15 +5103,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7758,7 +5120,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:46 GMT + - Mon, 11 Jan 2021 09:57:53 GMT expires: - '-1' pragma: @@ -7773,6 +5135,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -7792,15 +5156,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7809,7 +5173,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:47 GMT + - Mon, 11 Jan 2021 09:57:54 GMT expires: - '-1' pragma: @@ -7824,6 +5188,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -7843,15 +5209,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7860,7 +5226,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:48 GMT + - Mon, 11 Jan 2021 09:57:55 GMT expires: - '-1' pragma: @@ -7875,6 +5241,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -7894,15 +5262,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7911,7 +5279,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:49 GMT + - Mon, 11 Jan 2021 09:57:56 GMT expires: - '-1' pragma: @@ -7926,6 +5294,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -7945,15 +5315,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7962,7 +5332,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:51 GMT + - Mon, 11 Jan 2021 09:57:58 GMT expires: - '-1' pragma: @@ -7977,6 +5347,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -7996,15 +5368,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8013,7 +5385,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:52 GMT + - Mon, 11 Jan 2021 09:57:59 GMT expires: - '-1' pragma: @@ -8028,6 +5400,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -8047,15 +5421,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"InProgress","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8064,7 +5438,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:53 GMT + - Mon, 11 Jan 2021 09:58:01 GMT expires: - '-1' pragma: @@ -8079,6 +5453,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -8098,24 +5474,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/518a7a6f-14ae-4c15-983a-2bf426ba7d9c?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","name":"518a7a6f-14ae-4c15-983a-2bf426ba7d9c","status":"Succeeded","startTime":"2021-01-11T09:57:50.2630116Z","endTime":"2021-01-11T09:57:50.2630116Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3b9c8be3-18af-4129-9054-1cdc14129a7f"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:54 GMT + - Mon, 11 Jan 2021 09:58:02 GMT expires: - '-1' pragma: @@ -8130,6 +5506,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -8149,30 +5527,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9c8be3-18af-4129-9054-1cdc14129a7f?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b9c8be3-18af-4129-9054-1cdc14129a7f","name":"3b9c8be3-18af-4129-9054-1cdc14129a7f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT11.8648904S","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-01-11T09:57:50.2630116Z","endTime":"2021-01-11T09:58:02.127902Z","activityId":"76567902-53f3-11eb-b255-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '905' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:56 GMT + - Mon, 11 Jan 2021 09:58: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: @@ -8181,6 +5561,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -8194,30 +5576,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:16:58 GMT + - Mon, 11 Jan 2021 09:58:03 GMT expires: - '-1' pragma: @@ -8232,6 +5614,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -8245,49 +5629,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"InProgress","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"0001-01-01T00:00:00"}' + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:16:59 GMT + - Mon, 11 Jan 2021 09:58: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/92c390ba-42aa-4ede-941d-d93e3a3ab384?fabricName=Azure?api-version=2020-10-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-deletes: + - '14995' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8296,49 +5680,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/25593e20-3a97-47a3-8a70-ff6d2871e54b?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 response: body: - string: '{"id":"25593e20-3a97-47a3-8a70-ff6d2871e54b","name":"25593e20-3a97-47a3-8a70-ff6d2871e54b","status":"Succeeded","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"2019-11-27T08:16:28.1774051Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"93946f00-77b1-4041-8dec-3296b45bf176"}}' + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:01 GMT + - Mon, 11 Jan 2021 09:58: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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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: + - '99' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8347,51 +5733,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/93946f00-77b1-4041-8dec-3296b45bf176?api-version=2019-06-15 + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93946f00-77b1-4041-8dec-3296b45bf176","name":"93946f00-77b1-4041-8dec-3296b45bf176","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT31.6763426S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:16:28.1774051Z","endTime":"2019-11-27T08:16:59.8537477Z","activityId":"3571ece8-10ee-11ea-b64a-186024943d4f"}}' + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '882' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:01 GMT + - Mon, 11 Jan 2021 09:58: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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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: + - '98' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8406,43 +5792,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}]}' + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:01 GMT + - Mon, 11 Jan 2021 09:58: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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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: + - '97' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -8454,41 +5842,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + 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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 response: body: - string: '' + 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:17:01 GMT + - Mon, 11 Jan 2021 09:58:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?fabricName=Azure?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -8508,18 +5898,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8527,11 +5917,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:02 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8540,6 +5930,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -8559,18 +5951,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8578,11 +5970,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:03 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8591,6 +5983,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -8610,18 +6004,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8629,11 +6023,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:05 GMT + - Mon, 11 Jan 2021 09:58:12 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8642,6 +6036,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -8661,18 +6057,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8680,11 +6076,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:06 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8693,6 +6089,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -8712,18 +6110,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8731,11 +6129,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:07 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8744,6 +6142,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -8763,18 +6163,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8782,11 +6182,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:08 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8795,6 +6195,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -8814,18 +6216,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8833,11 +6235,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:09 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8846,6 +6248,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -8865,18 +6269,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8884,11 +6288,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:10 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8897,6 +6301,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -8916,18 +6322,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8935,11 +6341,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:11 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8948,6 +6354,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -8967,18 +6375,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8986,11 +6394,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:13 GMT + - Mon, 11 Jan 2021 09:58: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -8999,6 +6407,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -9018,18 +6428,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9037,11 +6447,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:14 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -9050,6 +6460,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -9069,18 +6481,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9088,11 +6500,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:15 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -9101,6 +6513,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -9120,18 +6534,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9139,11 +6553,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:16 GMT + - Mon, 11 Jan 2021 09:58: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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 pragma: - no-cache server: @@ -9152,6 +6566,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -9171,12 +6587,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5ab5c2e0-c7d2-4c24-bd5b-3e9bc5e8eca9?api-version=2016-12-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/92c390ba-42aa-4ede-941d-d93e3a3ab384?api-version=2020-10-01 response: body: string: '' @@ -9186,7 +6602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:17:17 GMT + - Mon, 11 Jan 2021 09:58:27 GMT expires: - '-1' pragma: @@ -9195,6 +6611,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -9214,12 +6632,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -9231,7 +6649,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:17:18 GMT + - Mon, 11 Jan 2021 10:00:07 GMT expires: - '-1' pragma: @@ -9246,6 +6664,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -9267,8 +6687,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -9282,7 +6702,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:17:21 GMT + - Mon, 11 Jan 2021 10:00:11 GMT expires: - '-1' pragma: @@ -9292,7 +6712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '198' + - '9' status: code: 200 message: OK 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 b4355a36604..785252377fd 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 @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2019-11-27T08%3A32%3A32.2754377Z''\"","properties":{"provisioningState":"Succeeded"},"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-01-11T09%3A52%3A53.9888021Z''\"","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: - - '400' + - '484' content-type: - application/json date: - - Wed, 27 Nov 2019 08:32:32 GMT + - Mon, 11 Jan 2021 09:52:54 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '198' + - '208' status: code: 201 message: Created @@ -66,10 +66,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - AZURECLI/2.15.1 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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=2019-06-01&$expand=kerb response: @@ -83,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:32:53 GMT + - Mon, 11 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -98,8 +95,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' status: code: 200 message: OK @@ -111,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.76 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.15.1 x-ms-date: - - Wed, 27 Nov 2019 08:32:54 GMT + - Mon, 11 Jan 2021 09:53:15 GMT x-ms-share-quota: - '1' x-ms-version: @@ -127,11 +124,11 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:32:54 GMT + - Mon, 11 Jan 2021 09:53:15 GMT etag: - - '"0x8D7731466560176"' + - '"0x8D8B616B7D58911"' last-modified: - - Wed, 27 Nov 2019 08:32:54 GMT + - Mon, 11 Jan 2021 09:53:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -153,15 +150,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2019-11-27T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -170,7 +167,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:32:54 GMT + - Mon, 11 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -185,6 +182,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -193,9 +192,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2019-11-27T18:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-11T19:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2019-11-27T18:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-11T19:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -211,17 +210,17 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -n + - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":["2019-11-27T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:30: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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -230,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:32:55 GMT + - Mon, 11 Jan 2021 09:53:17 GMT expires: - '-1' pragma: @@ -246,7 +245,113 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1191' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:53: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: + - '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-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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=2020-10-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;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","name":"StorageContainer;Storage;clitest.rg54qnerizhc;clitestplkksfxv2fdm6c6qp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestplkksfxv2fdm6c6qp","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg54qnerizhc/providers/Microsoft.Storage/storageAccounts/clitestplkksfxv2fdm6c6qp"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","name":"StorageContainer;Storage;clitest.rg5hqmpcwa2k;clitestvpsfi5gdihwq4thtf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvpsfi5gdihwq4thtf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5hqmpcwa2k/providers/Microsoft.Storage/storageAccounts/clitestvpsfi5gdihwq4thtf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '23869' + content-type: + - application/json + date: + - Mon, 11 Jan 2021 09:53: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: + - '147' x-powered-by: - ASP.NET status: @@ -268,28 +373,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 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/6026fbdc-492c-417e-9287-85a43257518f?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/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 27 Nov 2019 08:32:56 GMT + - Mon, 11 Jan 2021 09:53: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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -317,12 +422,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -332,17 +437,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:32:56 GMT + - Mon, 11 Jan 2021 09:53: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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-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: @@ -362,12 +469,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -377,17 +484,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:32:57 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-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: @@ -407,12 +516,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -422,17 +531,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:32:59 GMT + - Mon, 11 Jan 2021 09:53: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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-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: @@ -452,12 +563,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -467,17 +578,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:00 GMT + - Mon, 11 Jan 2021 09:53: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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-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: @@ -497,12 +610,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -512,17 +625,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:01 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-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: @@ -542,12 +657,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -557,17 +672,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:02 GMT + - Mon, 11 Jan 2021 09:53: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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -587,12 +704,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -602,17 +719,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:04 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -632,12 +751,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -647,17 +766,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:06 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -677,12 +798,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' @@ -692,17 +813,19 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:33:07 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -722,33 +845,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/6026fbdc-492c-417e-9287-85a43257518f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 27 Nov 2019 08:33:08 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 pragma: - no-cache 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: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -763,43 +892,82 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '' headers: cache-control: - no-cache content-length: - - '12' - content-type: + - '0' + date: + - Mon, 11 Jan 2021 09:53: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/operationResults/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' + 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 --azure-file-share --storage-account -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/d7363b6b-f9db-4f4e-aae0-c0acc5d0c61f?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache date: - - Wed, 27 Nov 2019 08:33:08 GMT + - Mon, 11 Jan 2021 09:53: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: + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -814,24 +982,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + 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=2020-10-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;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","name":"StorageContainer;ClassicStorage;vsarg-sea-RS-1606;vsargsears16068893","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"vsargsears16068893","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.ClassicStorage/storageAccounts/vsargsears16068893"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","name":"StorageContainer;Storage;ASEBVTRG;asebvtrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Storage/storageAccounts/asebvtrgdiag"}},{"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;igniterg;ignitergdisks316","name":"StorageContainer;Storage;igniterg;ignitergdisks316","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"ignitergdisks316","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/igniterg/providers/Microsoft.Storage/storageAccounts/ignitergdisks316"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranitestsa","name":"StorageContainer;Storage;mkheranirg;mkheranitestsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranitestsa","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranitestsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;Nilay-RG;nilshaafstest","name":"StorageContainer;Storage;Nilay-RG;nilshaafstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilshaafstest","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Storage/storageAccounts/nilshaafstest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","name":"StorageContainer;Storage;pstestwlRG1bca8;pstestwlrg1bca8diag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlrg1bca8diag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Storage/storageAccounts/pstestwlrg1bca8diag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;da1675southeastasia","name":"StorageContainer;Storage;securitydata;da1675southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"da1675southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/da1675southeastasia"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","name":"StorageContainer;ClassicStorage;cloudservicev1;cloudservicev1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cloudservicev1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudservicev1/providers/Microsoft.ClassicStorage/storageAccounts/cloudservicev1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","name":"StorageContainer;ClassicStorage;Default-Storage-SoutheastAsia;portalvhds41t863rtzlwxg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"portalvhds41t863rtzlwxg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-SoutheastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds41t863rtzlwxg"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","name":"StorageContainer;ClassicStorage;mkheraniclassicrg;mkheraniclassicrg1288","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniclassicrg1288","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheraniclassicrg/providers/Microsoft.ClassicStorage/storageAccounts/mkheraniclassicrg1288"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","name":"StorageContainer;Storage;bvtdibz1depstore1;bvtdibz1depstore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"bvtdibz1depstore1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","name":"StorageContainer;Storage;clitest.rg3ewuga7m5q;clitestc6k5kk3dr4syvy3jo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestc6k5kk3dr4syvy3jo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.Storage/storageAccounts/clitestc6k5kk3dr4syvy3jo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","name":"StorageContainer;Storage;clitest.rg3mspf3lzas;clitestbbplke2jam4cp22zd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestbbplke2jam4cp22zd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mspf3lzas/providers/Microsoft.Storage/storageAccounts/clitestbbplke2jam4cp22zd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","name":"StorageContainer;Storage;clitest.rg57pcqgkrv4;clitestpdauphjckdfvi6tkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestpdauphjckdfvi6tkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","name":"StorageContainer;Storage;clitest.rg5urjhs4xm3;clitestgjjayztgdz3xm7unr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgjjayztgdz3xm7unr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5urjhs4xm3/providers/Microsoft.Storage/storageAccounts/clitestgjjayztgdz3xm7unr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","name":"StorageContainer;Storage;clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht;clitestkq44z3j35zgkikkl2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestkq44z3j35zgkikkl2","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.Storage/storageAccounts/clitestkq44z3j35zgkikkl2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","name":"StorageContainer;Storage;clitest.rgc7kqfhlpqu;clitestz7qbobgpavkz4p6yz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestz7qbobgpavkz4p6yz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc7kqfhlpqu/providers/Microsoft.Storage/storageAccounts/clitestz7qbobgpavkz4p6yz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","name":"StorageContainer;Storage;clitest.rgctmxuxyf6n;clitestcbokseaqrnb2hbnhr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcbokseaqrnb2hbnhr","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgctmxuxyf6n/providers/Microsoft.Storage/storageAccounts/clitestcbokseaqrnb2hbnhr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","name":"StorageContainer;Storage;clitest.rgfklu6rm42z;clitestyfwkkoiwj33pnxu3n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestyfwkkoiwj33pnxu3n","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfklu6rm42z/providers/Microsoft.Storage/storageAccounts/clitestyfwkkoiwj33pnxu3n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","name":"StorageContainer;Storage;clitest.rgghnoor2njt;clitestuqe7nxg7ddrntmypw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuqe7nxg7ddrntmypw","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghnoor2njt/providers/Microsoft.Storage/storageAccounts/clitestuqe7nxg7ddrntmypw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","name":"StorageContainer;Storage;clitest.rggrl3igkkus;clitestiiaqzl4az23ibbrum","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestiiaqzl4az23ibbrum","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrl3igkkus/providers/Microsoft.Storage/storageAccounts/clitestiiaqzl4az23ibbrum"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest43btackmehpbpiche","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest43btackmehpbpiche","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest43btackmehpbpiche"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","name":"StorageContainer;Storage;clitest.rggrtjd4pyff;clitest7xa3k2zz66uzenbbg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest7xa3k2zz66uzenbbg","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrtjd4pyff/providers/Microsoft.Storage/storageAccounts/clitest7xa3k2zz66uzenbbg"}},{"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.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","name":"StorageContainer;Storage;clitest.rgguzfm2h6u3;clitestlf2jv62cp3j2fgblk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlf2jv62cp3j2fgblk","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgguzfm2h6u3/providers/Microsoft.Storage/storageAccounts/clitestlf2jv62cp3j2fgblk"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","name":"StorageContainer;Storage;clitest.rgo66ys2jf3o;clitestsi4bkgrrrxoivcr76","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestsi4bkgrrrxoivcr76","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo66ys2jf3o/providers/Microsoft.Storage/storageAccounts/clitestsi4bkgrrrxoivcr76"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","name":"StorageContainer;Storage;clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda;clitest2ttic5s4yy43hihgd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2ttic5s4yy43hihgd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.Storage/storageAccounts/clitest2ttic5s4yy43hihgd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","name":"StorageContainer;Storage;clitest.rgqlg3rf3hei;clitestg4do5ch4ymuunm7zf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestg4do5ch4ymuunm7zf","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.Storage/storageAccounts/clitestg4do5ch4ymuunm7zf"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","name":"StorageContainer;Storage;clitest.rgsan4tsf3k7;clitest3hankberx3sbvb2lh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3hankberx3sbvb2lh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsan4tsf3k7/providers/Microsoft.Storage/storageAccounts/clitest3hankberx3sbvb2lh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","name":"StorageContainer;Storage;clitest.rgw2m4mmhyw2;clitestqe6ap6jk3nf3fjfxt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqe6ap6jk3nf3fjfxt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw2m4mmhyw2/providers/Microsoft.Storage/storageAccounts/clitestqe6ap6jk3nf3fjfxt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","name":"StorageContainer;Storage;clitest.rgyg5u2o57xl;clitestdicfxmzqbp27pektv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestdicfxmzqbp27pektv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.Storage/storageAccounts/clitestdicfxmzqbp27pektv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;geetaRG;geetargdiag","name":"StorageContainer;Storage;geetaRG;geetargdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"geetargdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;mkheranirg;mkheranirgdiag","name":"StorageContainer;Storage;mkheranirg;mkheranirgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheranirgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;asehecshare","name":"StorageContainer;Storage;nilay-rg;asehecshare","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asehecshare","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;nilay-rg;nilayrgdiag","name":"StorageContainer;Storage;nilay-rg;nilayrgdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilayrgdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;portalehsbackupcenter;backupcenter","name":"StorageContainer;Storage;portalehsbackupcenter;backupcenter","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"backupcenter","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;psbvtrg;psbvtsa1","name":"StorageContainer;Storage;psbvtrg;psbvtsa1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"psbvtsa1","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;securitydata;f81603southeastasia","name":"StorageContainer;Storage;securitydata;f81603southeastasia","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"f81603southeastasia","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia"}}]}' headers: cache-control: - no-cache content-length: - - '5834' + - '23869' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:08 GMT + - Mon, 11 Jan 2021 09:53:34 GMT expires: - '-1' pragma: @@ -846,14 +1014,16 @@ interactions: - 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: 'b''b\''{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}\''''' + 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 @@ -870,18 +1040,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -889,11 +1059,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:09 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -903,7 +1073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1188' x-powered-by: - ASP.NET status: @@ -923,18 +1093,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -942,11 +1112,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:09 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -955,6 +1125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -974,18 +1146,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -993,11 +1165,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:11 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1006,6 +1178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1025,18 +1199,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1044,11 +1218,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:12 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1057,6 +1231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1076,18 +1252,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1095,11 +1271,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:13 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1108,6 +1284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -1127,18 +1305,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1146,11 +1324,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:14 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1159,6 +1337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -1178,18 +1358,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1197,11 +1377,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:15 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1210,6 +1390,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -1229,18 +1411,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1248,11 +1430,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:17 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1261,6 +1443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -1280,18 +1464,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1299,11 +1483,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:18 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1312,6 +1496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1331,18 +1517,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1350,11 +1536,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:19 GMT + - Mon, 11 Jan 2021 09:53: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/operationResults/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 pragma: - no-cache server: @@ -1363,6 +1549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1382,43 +1570,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/3a5fa547-c886-499a-aa4e-9417f6b1005b?api-version=2020-10-01 response: body: - string: '{}' + 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"}}' 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:20 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1433,43 +1623,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{}' + 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-01-11T19:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-11T19:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '740' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:21 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1484,43 +1676,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:22 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1532,41 +1726,41 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-01 + 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:33:24 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -1586,18 +1780,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1605,11 +1799,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:25 GMT + - Mon, 11 Jan 2021 09:53:49 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-01 pragma: - no-cache server: @@ -1618,6 +1812,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1637,18 +1833,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1656,11 +1852,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:26 GMT + - Mon, 11 Jan 2021 09:53: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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-01 pragma: - no-cache server: @@ -1669,6 +1865,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1688,43 +1886,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/9f056db6-4aa0-49c1-9e36-d60f12a76a04?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + 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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '868' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33:27 GMT + - Mon, 11 Jan 2021 09:53: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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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: + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1739,2232 +1939,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + 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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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":["2019-11-27T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-11-27T18:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + 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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 - Content-Length: - - '0' - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2016-12-01&$filter=workloadType%20eq%20%27AzureFileShare%27 - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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 protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33:49 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/39a38797-6dd5-4d82-bd4c-65ef33d1de40?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 08:33:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-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;clitest-item000004","name":"azurefileshare;clitest-item000004","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 - content-length: - - '959' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''b\''b\\\''b\\\\\\\''{"properties": {"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", - "protectedItemType": "AzureFileShareProtectedItem"}}\\\\\\\''\\\''\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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;clitest-item000004/operationsStatus/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:33: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/protectedItems/azurefileshare;clitest-item000004/operationResults/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2019-05-13 - 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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:33:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --azure-file-share --storage-account -p - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 - response: - body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34:16 GMT + - Mon, 11 Jan 2021 09:53: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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-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: + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3979,43 +1992,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-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/25850bbe-ee24-45c1-80b5-d598ee5e4ea4?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:34:17 GMT + - Mon, 11 Jan 2021 09:53: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: + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4030,24 +2037,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + 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;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","name":"azurefileshare;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","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 content-length: - - '188' + - '1039' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:18 GMT + - Mon, 11 Jan 2021 09:53:54 GMT expires: - '-1' pragma: @@ -4062,13 +2069,17 @@ interactions: - 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 + body: '{"properties": {"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", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -4078,46 +2089,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + 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%3B78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + 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;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c/operationsStatus/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:34:19 GMT + - Mon, 11 Jan 2021 09:53: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/protectedItems/azurefileshare;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c/operationResults/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-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: + - '1189' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4132,24 +2145,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:20 GMT + - Mon, 11 Jan 2021 09:53:56 GMT expires: - '-1' pragma: @@ -4164,6 +2177,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -4183,24 +2198,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:22 GMT + - Mon, 11 Jan 2021 09:53:57 GMT expires: - '-1' pragma: @@ -4215,6 +2230,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -4234,24 +2251,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:23 GMT + - Mon, 11 Jan 2021 09:53:58 GMT expires: - '-1' pragma: @@ -4266,6 +2283,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -4285,24 +2304,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:24 GMT + - Mon, 11 Jan 2021 09:53:59 GMT expires: - '-1' pragma: @@ -4317,6 +2336,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -4336,24 +2357,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:26 GMT + - Mon, 11 Jan 2021 09:54:00 GMT expires: - '-1' pragma: @@ -4368,6 +2389,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -4387,24 +2410,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:27 GMT + - Mon, 11 Jan 2021 09:54:02 GMT expires: - '-1' pragma: @@ -4419,6 +2442,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -4438,24 +2463,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:29 GMT + - Mon, 11 Jan 2021 09:54:04 GMT expires: - '-1' pragma: @@ -4470,6 +2495,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -4489,24 +2516,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:30 GMT + - Mon, 11 Jan 2021 09:54:05 GMT expires: - '-1' pragma: @@ -4521,6 +2548,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -4540,24 +2569,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:31 GMT + - Mon, 11 Jan 2021 09:54:06 GMT expires: - '-1' pragma: @@ -4572,6 +2601,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -4591,24 +2622,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:32 GMT + - Mon, 11 Jan 2021 09:54:07 GMT expires: - '-1' pragma: @@ -4623,6 +2654,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -4642,24 +2675,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"InProgress","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:34 GMT + - Mon, 11 Jan 2021 09:54:09 GMT expires: - '-1' pragma: @@ -4674,6 +2707,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -4693,24 +2728,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/0da44b09-72c4-40fb-a437-cbe317ac0713?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"0da44b09-72c4-40fb-a437-cbe317ac0713","name":"0da44b09-72c4-40fb-a437-cbe317ac0713","status":"Succeeded","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"2019-11-27T08:33:51.7951297Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"caac7c4f-04a4-40b3-a2f9-0569184554ff"}}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:35 GMT + - Mon, 11 Jan 2021 09:54:10 GMT expires: - '-1' pragma: @@ -4725,6 +2760,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -4744,129 +2781,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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/caac7c4f-04a4-40b3-a2f9-0569184554ff?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/caac7c4f-04a4-40b3-a2f9-0569184554ff","name":"caac7c4f-04a4-40b3-a2f9-0569184554ff","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.4730312S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2019-11-27T08:33:51.7951297Z","endTime":"2019-11-27T08:34:34.2681609Z","activityId":"8300a84c-10f0-11ea-a5d6-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '922' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 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-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 - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%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/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '880' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 08:34: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-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 --query - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 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;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"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"}}]}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1230' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:36 GMT + - Mon, 11 Jan 2021 09:54:11 GMT expires: - '-1' pragma: @@ -4881,6 +2813,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -4894,30 +2828,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/protectedItems/AzureFileShare%3Bclitest-item000004?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-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/protectedItems/AzureFileShare;clitest-item000004","name":"AzureFileShare;clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2019-11-27T08:34:34.0494035Z"},"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"}}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1365' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:37 GMT + - Mon, 11 Jan 2021 09:54:12 GMT expires: - '-1' pragma: @@ -4932,6 +2866,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -4945,81 +2881,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 - 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%3Bclitest-item000004?api-version=2019-06-15 - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2019-05-13 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 08:34:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2019-05-13 - 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 + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:38 GMT + - Mon, 11 Jan 2021 09:54:14 GMT expires: - '-1' pragma: @@ -5034,6 +2919,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -5047,30 +2934,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:39 GMT + - Mon, 11 Jan 2021 09:54:15 GMT expires: - '-1' pragma: @@ -5085,6 +2972,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -5098,30 +2987,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:40 GMT + - Mon, 11 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -5136,6 +3025,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -5149,30 +3040,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:41 GMT + - Mon, 11 Jan 2021 09:54:18 GMT expires: - '-1' pragma: @@ -5187,6 +3078,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -5200,30 +3093,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:43 GMT + - Mon, 11 Jan 2021 09:54:19 GMT expires: - '-1' pragma: @@ -5238,6 +3131,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -5251,30 +3146,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:44 GMT + - Mon, 11 Jan 2021 09:54:20 GMT expires: - '-1' pragma: @@ -5289,6 +3184,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -5302,30 +3199,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:45 GMT + - Mon, 11 Jan 2021 09:54:22 GMT expires: - '-1' pragma: @@ -5340,6 +3237,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -5353,30 +3252,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:46 GMT + - Mon, 11 Jan 2021 09:54:23 GMT expires: - '-1' pragma: @@ -5391,6 +3290,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -5404,30 +3305,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:47 GMT + - Mon, 11 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -5442,6 +3343,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -5455,30 +3358,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:49 GMT + - Mon, 11 Jan 2021 09:54:25 GMT expires: - '-1' pragma: @@ -5493,6 +3396,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -5506,30 +3411,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:50 GMT + - Mon, 11 Jan 2021 09:54:28 GMT expires: - '-1' pragma: @@ -5544,6 +3449,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '17' x-powered-by: - ASP.NET status: @@ -5557,30 +3464,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:51 GMT + - Mon, 11 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -5595,6 +3502,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '15' x-powered-by: - ASP.NET status: @@ -5608,30 +3517,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:53 GMT + - Mon, 11 Jan 2021 09:54:31 GMT expires: - '-1' pragma: @@ -5646,6 +3555,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '13' x-powered-by: - ASP.NET status: @@ -5659,30 +3570,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:55 GMT + - Mon, 11 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -5697,6 +3608,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '10' x-powered-by: - ASP.NET status: @@ -5710,30 +3623,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:56 GMT + - Mon, 11 Jan 2021 09:54:34 GMT expires: - '-1' pragma: @@ -5748,6 +3661,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '8' x-powered-by: - ASP.NET status: @@ -5761,30 +3676,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:57 GMT + - Mon, 11 Jan 2021 09:54:35 GMT expires: - '-1' pragma: @@ -5799,6 +3714,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '6' x-powered-by: - ASP.NET status: @@ -5812,30 +3729,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"InProgress","startTime":"2021-01-11T09:53:55.913699Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:58 GMT + - Mon, 11 Jan 2021 09:54:36 GMT expires: - '-1' pragma: @@ -5850,6 +3767,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4' x-powered-by: - ASP.NET status: @@ -5863,30 +3782,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7f2d0e02-89f3-4d4c-a5aa-e4787babe994?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","name":"7f2d0e02-89f3-4d4c-a5aa-e4787babe994","status":"Succeeded","startTime":"2021-01-11T09:53:55.913699Z","endTime":"2021-01-11T09:53:55.913699Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c9a77157-cb25-4a0e-99e3-abc8c3b93234"}}' headers: cache-control: - no-cache content-length: - - '188' + - '302' content-type: - application/json date: - - Wed, 27 Nov 2019 08:34:59 GMT + - Mon, 11 Jan 2021 09:54:37 GMT expires: - '-1' pragma: @@ -5901,6 +3820,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '3' x-powered-by: - ASP.NET status: @@ -5914,36 +3835,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c9a77157-cb25-4a0e-99e3-abc8c3b93234?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c9a77157-cb25-4a0e-99e3-abc8c3b93234","name":"c9a77157-cb25-4a0e-99e3-abc8c3b93234","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.0311143S","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-01-11T09:53:55.913699Z","endTime":"2021-01-11T09:54:37.9448133Z","activityId":"d4ad1acf-53f2-11eb-9d72-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '945' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:01 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -5952,6 +3876,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -5965,30 +3891,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -n -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + 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","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:02 GMT + - Mon, 11 Jan 2021 09:54:38 GMT expires: - '-1' pragma: @@ -6003,6 +3929,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6016,30 +3944,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + 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;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","name":"AzureFileShare;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1327' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:03 GMT + - Mon, 11 Jan 2021 09:54:40 GMT expires: - '-1' pragma: @@ -6054,6 +3982,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6073,24 +4003,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-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%3B78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + 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/protectedItems/AzureFileShare;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","name":"AzureFileShare;78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-01-11T09:54:37.7548612Z"},"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"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1462' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:04 GMT + - Mon, 11 Jan 2021 09:54:40 GMT expires: - '-1' pragma: @@ -6105,6 +4035,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6121,46 +4053,46 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + 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%3B78a2297a3586cf82b156a7a375909ea2f2675b04094b4aafd832964ab7d37f1c?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:35:05 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-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-deletes: + - '14996' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6175,15 +4107,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6192,7 +4124,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:06 GMT + - Mon, 11 Jan 2021 09:54:41 GMT expires: - '-1' pragma: @@ -6207,6 +4139,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -6226,15 +4160,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6243,7 +4177,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:08 GMT + - Mon, 11 Jan 2021 09:54:42 GMT expires: - '-1' pragma: @@ -6258,6 +4192,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -6277,15 +4213,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6294,7 +4230,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:09 GMT + - Mon, 11 Jan 2021 09:54:44 GMT expires: - '-1' pragma: @@ -6309,6 +4245,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -6328,15 +4266,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6345,7 +4283,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:10 GMT + - Mon, 11 Jan 2021 09:54:45 GMT expires: - '-1' pragma: @@ -6360,6 +4298,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -6379,15 +4319,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6396,7 +4336,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:11 GMT + - Mon, 11 Jan 2021 09:54:47 GMT expires: - '-1' pragma: @@ -6411,6 +4351,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -6430,15 +4372,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6447,7 +4389,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:12 GMT + - Mon, 11 Jan 2021 09:54:48 GMT expires: - '-1' pragma: @@ -6462,6 +4404,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -6481,15 +4425,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6498,7 +4442,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:13 GMT + - Mon, 11 Jan 2021 09:54:49 GMT expires: - '-1' pragma: @@ -6513,6 +4457,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -6532,15 +4478,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6549,7 +4495,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:15 GMT + - Mon, 11 Jan 2021 09:54:50 GMT expires: - '-1' pragma: @@ -6564,6 +4510,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -6583,15 +4531,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6600,7 +4548,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:16 GMT + - Mon, 11 Jan 2021 09:54:52 GMT expires: - '-1' pragma: @@ -6615,6 +4563,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -6634,15 +4584,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6651,7 +4601,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:17 GMT + - Mon, 11 Jan 2021 09:54:53 GMT expires: - '-1' pragma: @@ -6666,6 +4616,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -6685,15 +4637,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6702,7 +4654,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:18 GMT + - Mon, 11 Jan 2021 09:54:54 GMT expires: - '-1' pragma: @@ -6717,6 +4669,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -6736,15 +4690,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"InProgress","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6753,7 +4707,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:19 GMT + - Mon, 11 Jan 2021 09:54:55 GMT expires: - '-1' pragma: @@ -6768,6 +4722,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -6787,24 +4743,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/ea252c5b-ef3c-44c4-911a-4d5c32e78cc0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","name":"ea252c5b-ef3c-44c4-911a-4d5c32e78cc0","status":"Succeeded","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"2019-11-27T08:34:38.5538207Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5231638f-be46-46f5-a64d-c06b109f6c19"}}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:21 GMT + - Mon, 11 Jan 2021 09:54:56 GMT expires: - '-1' pragma: @@ -6819,6 +4775,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -6838,32 +4796,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/5231638f-be46-46f5-a64d-c06b109f6c19?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5231638f-be46-46f5-a64d-c06b109f6c19","name":"5231638f-be46-46f5-a64d-c06b109f6c19","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.7313384S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2019-11-27T08:34:38.5538207Z","endTime":"2019-11-27T08:35:20.2851591Z","activityId":"bf07c686-10f0-11ea-b17c-186024943d4f"}}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '882' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:21 GMT + - Mon, 11 Jan 2021 09:54: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: @@ -6872,6 +4828,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -6885,30 +4843,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-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","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","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"}}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '868' + - '188' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:21 GMT + - Mon, 11 Jan 2021 09:55:00 GMT expires: - '-1' pragma: @@ -6923,6 +4881,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -6936,49 +4896,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c --yes + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"InProgress","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"0001-01-01T00:00:00"}' 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Wed, 27 Nov 2019 08:35:22 GMT + - Mon, 11 Jan 2021 09:55:01 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?fabricName=Azure?api-version=2016-12-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-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6987,49 +4949,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/385a8b70-57a7-4afc-919f-0b67f3641e41?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"385a8b70-57a7-4afc-919f-0b67f3641e41","name":"385a8b70-57a7-4afc-919f-0b67f3641e41","status":"Succeeded","startTime":"2021-01-11T09:54:41.6380707Z","endTime":"2021-01-11T09:54:41.6380707Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fc266cf0-7dde-43ab-955f-0f1f1f746da3"}}' 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '304' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:22 GMT + - Mon, 11 Jan 2021 09:55: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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: + - '101' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7038,49 +5002,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc266cf0-7dde-43ab-955f-0f1f1f746da3?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fc266cf0-7dde-43ab-955f-0f1f1f746da3","name":"fc266cf0-7dde-43ab-955f-0f1f1f746da3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.3373042S","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-01-11T09:54:41.6380707Z","endTime":"2021-01-11T09:55:02.9753749Z","activityId":"05d9cfcc-53f3-11eb-9f90-c8f750f92764"}}' 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '906' content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:23 GMT + - Mon, 11 Jan 2021 09:55: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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: + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7092,41 +5060,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-01 + 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?api-version=2020-10-01 response: body: - string: '{}' + 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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Wed, 27 Nov 2019 08:35:24 GMT + - Mon, 11 Jan 2021 09:55: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9729a834-1484-4e24-a7d1-84efd1f0e705?fabricName=Azure?api-version=2020-10-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: + - '14994' x-powered-by: - ASP.NET status: @@ -7146,18 +5114,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7165,11 +5133,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:25 GMT + - Mon, 11 Jan 2021 09:55: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7178,6 +5146,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -7197,18 +5167,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7216,11 +5186,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:27 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7229,6 +5199,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -7248,18 +5220,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7267,11 +5239,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:28 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7280,6 +5252,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -7299,18 +5273,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7318,11 +5292,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:29 GMT + - Mon, 11 Jan 2021 09:55:08 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7331,6 +5305,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -7350,18 +5326,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7369,11 +5345,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:30 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7382,6 +5358,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -7401,18 +5379,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7420,11 +5398,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:31 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7433,6 +5411,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -7452,18 +5432,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7471,11 +5451,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:33 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7484,6 +5464,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -7503,18 +5485,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7522,11 +5504,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:36 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7535,6 +5517,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -7554,18 +5538,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7573,11 +5557,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:37 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7586,6 +5570,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -7605,18 +5591,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7624,11 +5610,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:38 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7637,6 +5623,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -7656,18 +5644,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7675,11 +5663,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:39 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7688,6 +5676,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -7707,18 +5697,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7726,11 +5716,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:41 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7739,6 +5729,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -7758,18 +5750,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7777,11 +5769,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:42 GMT + - Mon, 11 Jan 2021 09:55: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/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7790,6 +5782,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -7809,18 +5803,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7828,11 +5822,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:43 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7841,6 +5835,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -7860,18 +5856,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7879,11 +5875,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:44 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7892,6 +5888,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -7911,18 +5909,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-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/10ca23ed-4b13-4268-aba8-769be1da26eb?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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7930,11 +5928,11 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:45 GMT + - Mon, 11 Jan 2021 09:55: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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 pragma: - no-cache server: @@ -7943,6 +5941,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -7962,12 +5962,12 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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/10ca23ed-4b13-4268-aba8-769be1da26eb?api-version=2016-12-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/9729a834-1484-4e24-a7d1-84efd1f0e705?api-version=2020-10-01 response: body: string: '' @@ -7977,7 +5977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 08:35:47 GMT + - Mon, 11 Jan 2021 09:55:26 GMT expires: - '-1' pragma: @@ -7986,6 +5986,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -8005,12 +6007,12 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8022,7 +6024,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:48 GMT + - Mon, 11 Jan 2021 09:55:27 GMT expires: - '-1' pragma: @@ -8037,6 +6039,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -8056,12 +6060,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -8073,7 +6077,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 08:35:48 GMT + - Mon, 11 Jan 2021 09:57:07 GMT expires: - '-1' pragma: @@ -8088,6 +6092,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -8109,8 +6115,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -8124,7 +6130,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 08:35:52 GMT + - Mon, 11 Jan 2021 09:57:10 GMT expires: - '-1' pragma: @@ -8134,7 +6140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_container.yaml index 0600678af33..97648055da9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_container.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T07%3A08%3A56.1522303Z''\"","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-01-15T14%3A10%3A03.3268281Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:08:57 GMT + - Fri, 15 Jan 2021 14:10:03 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '208' status: code: 201 message: Created @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T07:08:41Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:08:57 GMT + - Fri, 15 Jan 2021 14:10:04 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 07:08:58 GMT + - Fri, 15 Jan 2021 14:10:07 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 07:13:58 GMT + - Fri, 15 Jan 2021 14:15:07 GMT source-age: - - '106' + - '221' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - HIT, HIT x-cache-hits: - - 1, 0 + - 2, 2 x-content-type-options: - nosniff x-fastly-request-id: - - 9fa2a6890bcf77b28ab78994d4986e23b0f57583 + - 3a72c7387e2b9f71ccc745343614eab014a30b88 x-frame-options: - deny x-github-request-id: - - EFFE:43CE:42785A:4B3DF4:5FDC5589 + - 345C:61E7:B60E8:C0857:60017CFC x-served-by: - - cache-mia11335-MIA + - cache-sin18027-SIN x-timer: - - S1608275338.268323,VS0,VE26 + - S1610719808.717596,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:08:58 GMT + - Fri, 15 Jan 2021 14:10:07 GMT expires: - '-1' pragma: @@ -293,26 +290,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_6BIbc5xdYZCie5AI9yxpTTV0EBXCRmHN","name":"vm_deploy_6BIbc5xdYZCie5AI9yxpTTV0EBXCRmHN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4627155043891469023","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T07:09:06.5990678Z","duration":"PT3.8279556S","correlationId":"5c3de1f2-c1b9-4141-92b6-03cbb370850c","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Z0xBIq88UnluqpkPeklR9tC51T4QNZKj","name":"vm_deploy_Z0xBIq88UnluqpkPeklR9tC51T4QNZKj","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12556403165490528986","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:10:09.9309006Z","duration":"PT1.2642052S","correlationId":"31e20ae2-9e64-4c4e-b221-7a30691f57c4","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_6BIbc5xdYZCie5AI9yxpTTV0EBXCRmHN/operationStatuses/08585933315427065157?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Z0xBIq88UnluqpkPeklR9tC51T4QNZKj/operationStatuses/08585908870768109442?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2960' + - '2961' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:09:08 GMT + - Fri, 15 Jan 2021 14:10:10 GMT expires: - '-1' pragma: @@ -322,7 +319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -340,10 +337,53 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870768109442?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: + - Fri, 15 Jan 2021 14:10:40 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933315427065157?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870768109442?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:09:39 GMT + - Fri, 15 Jan 2021 14:11:11 GMT expires: - '-1' pragma: @@ -383,10 +423,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933315427065157?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870768109442?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -398,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:09 GMT + - Fri, 15 Jan 2021 14:11:41 GMT expires: - '-1' pragma: @@ -426,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933315427065157?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870768109442?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -441,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:41 GMT + - Fri, 15 Jan 2021 14:12:10 GMT expires: - '-1' pragma: @@ -469,13 +509,13 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_6BIbc5xdYZCie5AI9yxpTTV0EBXCRmHN","name":"vm_deploy_6BIbc5xdYZCie5AI9yxpTTV0EBXCRmHN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4627155043891469023","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T07:10:24.8650421Z","duration":"PT1M22.0939299S","correlationId":"5c3de1f2-c1b9-4141-92b6-03cbb370850c","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Z0xBIq88UnluqpkPeklR9tC51T4QNZKj","name":"vm_deploy_Z0xBIq88UnluqpkPeklR9tC51T4QNZKj","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12556403165490528986","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:11:50.294376Z","duration":"PT1M41.6276806S","correlationId":"31e20ae2-9e64-4c4e-b221-7a30691f57c4","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 @@ -484,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:41 GMT + - Fri, 15 Jan 2021 14:12:10 GMT expires: - '-1' pragma: @@ -512,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -521,16 +561,16 @@ interactions: \ \"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\": \"28984057-7065-44cb-b0e5-d68864081e44\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ea667072-8135-4472-8919-bfb8324ac32d\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_ed101b084d33419bb93ceec2b55485d1\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\",\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_disk1_ed101b084d33419bb93ceec2b55485d1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\"\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\": @@ -544,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T07:10:42+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:12:12+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_ed101b084d33419bb93ceec2b55485d1\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:09:50.8432819+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:31.7111075+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T07:10:21.468663+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:11:49.5386898+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}" @@ -561,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3448' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:42 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -582,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3972,Microsoft.Compute/LowCostGet30Min;31972 status: code: 200 message: OK @@ -590,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -600,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"d4647c4a-d898-4c5a-834b-aaabb884d936\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"28ae14b0-3d20-4675-aad3-42881b0da26f\\\"\",\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\": \"ad2ff26a-7670-4c3f-a642-92775a223cad\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"174b86cb-266f-4c26-9578-db12587e4831\",\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/\\\"d4647c4a-d898-4c5a-834b-aaabb884d936\\\"\",\r\n + \ \"etag\": \"W/\\\"28ae14b0-3d20-4675-aad3-42881b0da26f\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -625,8 +662,8 @@ interactions: \ },\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\": - \"grr22q5v0cjexasmuauz2nxmth.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-F3-37\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"vpl4dw2ntanezcvoy2qxi2cpuf.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-1E-83\",\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\": @@ -640,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:42 GMT + - Fri, 15 Jan 2021 14:12:12 GMT etag: - - W/"d4647c4a-d898-4c5a-834b-aaabb884d936" + - W/"28ae14b0-3d20-4675-aad3-42881b0da26f" expires: - '-1' pragma: @@ -659,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3352714f-ce29-44ef-b98f-a5da60053add + - f1b42692-c964-4ab3-bdd4-c07e1a39a725 status: code: 200 message: OK @@ -667,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -677,22 +714,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"326fabe9-de63-4b76-ba87-a8969ee9788a\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3b7a1323-8b99-4d77-bbcf-4e410a0e8513\\\"\",\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\": \"511e1500-0955-4893-b144-9ace414a175d\",\r\n - \ \"ipAddress\": \"104.215.248.83\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"72dcfabf-86bc-4851-a84b-62c9666b0829\",\r\n + \ \"ipAddress\": \"13.76.128.168\",\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}" @@ -700,13 +734,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1182' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:42 GMT + - Fri, 15 Jan 2021 14:12:12 GMT etag: - - W/"326fabe9-de63-4b76-ba87-a8969ee9788a" + - W/"3b7a1323-8b99-4d77-bbcf-4e410a0e8513" expires: - '-1' pragma: @@ -723,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb5eafc5-df8d-4571-acff-1e0adc9f71f7 + - 61ee70dd-c744-4c8f-9f75-b773ebf74499 status: code: 200 message: OK @@ -741,15 +775,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T07:08:41Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -758,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:43 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -837,17 +871,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:44 GMT + - Fri, 15 Jan 2021 14:12:13 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 07:15:44 GMT + - Fri, 15 Jan 2021 14:17:13 GMT source-age: - - '212' + - '35' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: @@ -857,15 +891,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 4b8eed48df56872d910eb4dcba31210506ec5942 + - 09333982d9cc10abb7c10037ef8b37e6c81dc379 x-frame-options: - deny x-github-request-id: - - EFFE:43CE:42785A:4B3DF4:5FDC5589 + - 6C9A:5FEB:DAEB8:E6B82:6001A2BD x-served-by: - - cache-mia11340-MIA + - cache-sin18023-SIN x-timer: - - S1608275445.671098,VS0,VE0 + - S1610719933.466246,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -875,7 +909,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -885,27 +919,24 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitest-vm000003VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET\",\r\n - \ \"etag\": \"W/\\\"83227953-3b5f-4167-bb12-3bbb7f331c93\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1932e14a-0355-42fb-b7fd-5d4c33538f7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\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\": - \"43ce6334-d0f5-4b92-824c-a0299e36ec9f\",\r\n \"addressSpace\": {\r\n + \"dbe1d7ab-988d-4c1a-8aae-c72174704fa5\",\r\n \"addressSpace\": {\r\n \ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"clitest-vm000003Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET/subnets/clitest-vm000003Subnet\",\r\n - \ \"etag\": \"W/\\\"83227953-3b5f-4167-bb12-3bbb7f331c93\\\"\",\r\n + \ \"etag\": \"W/\\\"1932e14a-0355-42fb-b7fd-5d4c33538f7d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\"\r\n @@ -921,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:45 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -938,7 +969,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 987f26ef-6790-4590-a88f-3992bde10a94 + - d5a0e14c-bfea-4860-8e91-1aa5d49fba73 status: code: 200 message: OK @@ -990,26 +1021,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_SnRmCvQEQFnosabeqXpne2OYKJXUGrd3","name":"vm_deploy_SnRmCvQEQFnosabeqXpne2OYKJXUGrd3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5761002435843536829","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T07:10:52.6816771Z","duration":"PT3.4089425S","correlationId":"990434c3-ab40-45ea-aa38-7cfee0b6e2c8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8uFa3tehK6wAxRXF518FlvnRWqFdfka4","name":"vm_deploy_8uFa3tehK6wAxRXF518FlvnRWqFdfka4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15116923282971359932","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:12:16.3894059Z","duration":"PT1.5097298S","correlationId":"a41ab015-7f17-45e4-a3cd-beb0fa0c882f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnRmCvQEQFnosabeqXpne2OYKJXUGrd3/operationStatuses/08585933314362048938?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8uFa3tehK6wAxRXF518FlvnRWqFdfka4/operationStatuses/08585908869505979492?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2591' + - '2592' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:10:54 GMT + - Fri, 15 Jan 2021 14:12:16 GMT expires: - '-1' pragma: @@ -1019,7 +1050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -1037,10 +1068,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505979492?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: + - Fri, 15 Jan 2021 14:12:47 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505979492?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: + - Fri, 15 Jan 2021 14:13: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: 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933314362048938?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505979492?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1052,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:25 GMT + - Fri, 15 Jan 2021 14:13:46 GMT expires: - '-1' pragma: @@ -1080,10 +1197,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933314362048938?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505979492?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1095,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:56 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1123,22 +1240,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_SnRmCvQEQFnosabeqXpne2OYKJXUGrd3","name":"vm_deploy_SnRmCvQEQFnosabeqXpne2OYKJXUGrd3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5761002435843536829","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T07:11:49.0779076Z","duration":"PT59.805173S","correlationId":"990434c3-ab40-45ea-aa38-7cfee0b6e2c8","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8uFa3tehK6wAxRXF518FlvnRWqFdfka4","name":"vm_deploy_8uFa3tehK6wAxRXF518FlvnRWqFdfka4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15116923282971359932","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:13:58.4303105Z","duration":"PT1M43.5506344S","correlationId":"a41ab015-7f17-45e4-a3cd-beb0fa0c882f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3499' + - '3503' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:57 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1166,7 +1283,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: @@ -1175,16 +1292,16 @@ interactions: \ \"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\": \"676ad258-dacb-4fa2-8c07-e71da4715fa5\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c9f8c87-705a-4912-b361-d2870122cd79\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\",\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-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": @@ -1198,16 +1315,16 @@ interactions: \ {\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\": \"2020-12-18T07:11:58+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:14:19+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:11:24.2664348+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:12:39.3507993+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T07:11:47.4854611+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:13:57.1780851+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}" @@ -1215,11 +1332,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:57 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1236,7 +1353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3921,Microsoft.Compute/LowCostGet30Min;31921 status: code: 200 message: OK @@ -1244,7 +1361,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1254,23 +1371,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic\",\r\n - \ \"etag\": \"W/\\\"a09fbc62-9c2a-4d78-8343-7990a45fedaa\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"305fcb6c-a3d1-4662-b023-cf837612ccdd\\\"\",\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\": \"94fe8c83-655c-41f7-b987-0ccbb089c05e\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4a16c454-702d-48ff-b1fa-ddcaa4a1bfd4\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\",\r\n - \ \"etag\": \"W/\\\"a09fbc62-9c2a-4d78-8343-7990a45fedaa\\\"\",\r\n + \ \"etag\": \"W/\\\"305fcb6c-a3d1-4662-b023-cf837612ccdd\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1279,8 +1393,8 @@ interactions: \ },\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\": - \"grr22q5v0cjexasmuauz2nxmth.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-57-1B-6A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"vpl4dw2ntanezcvoy2qxi2cpuf.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-17-A7\",\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-vm000004NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1294,9 +1408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:58 GMT + - Fri, 15 Jan 2021 14:14:19 GMT etag: - - W/"a09fbc62-9c2a-4d78-8343-7990a45fedaa" + - W/"305fcb6c-a3d1-4662-b023-cf837612ccdd" expires: - '-1' pragma: @@ -1313,7 +1427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68870e2f-cca2-404b-a37c-05aa2d4a4d54 + - 91468a0d-0463-4957-aadc-329a3501e08f status: code: 200 message: OK @@ -1321,7 +1435,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1331,22 +1445,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP\",\r\n - \ \"etag\": \"W/\\\"567ba194-71fc-4c9a-9f55-47db620b025f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6895db91-19c8-47cc-a42d-af0663152fcc\\\"\",\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\": \"f9946b1d-4055-4cc4-aa7e-002fa67bcf37\",\r\n - \ \"ipAddress\": \"52.163.241.127\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"6785e469-746b-432a-84a7-5ef7c5bbd731\",\r\n + \ \"ipAddress\": \"13.67.75.221\",\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-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1354,13 +1465,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1181' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:59 GMT + - Fri, 15 Jan 2021 14:14:19 GMT etag: - - W/"567ba194-71fc-4c9a-9f55-47db620b025f" + - W/"6895db91-19c8-47cc-a42d-af0663152fcc" expires: - '-1' pragma: @@ -1377,7 +1488,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e01ba20-77d9-4d92-a875-3b99e1cd9a1b + - 853d6a9e-fdf6-4263-a86b-d38581f4c382 status: code: 200 message: OK @@ -1395,7 +1506,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1404,16 +1515,16 @@ interactions: \ \"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\": \"28984057-7065-44cb-b0e5-d68864081e44\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ea667072-8135-4472-8919-bfb8324ac32d\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_ed101b084d33419bb93ceec2b55485d1\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\",\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_disk1_ed101b084d33419bb93ceec2b55485d1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\"\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\": @@ -1429,15 +1540,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T07:11:59+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_disk1_ed101b084d33419bb93ceec2b55485d1\",\r\n + \ \"time\": \"2021-01-15T14:14:04+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:09:50.8432819+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:31.7111075+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\": \"2020-12-18T07:10:21.468663+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:11:49.5386898+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}" @@ -1445,11 +1556,11 @@ interactions: cache-control: - no-cache content-length: - - '3572' + - '3582' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:11:59 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1466,7 +1577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992 + - Microsoft.Compute/LowCostGet3Min;3918,Microsoft.Compute/LowCostGet30Min;31918 status: code: 200 message: OK @@ -1484,15 +1595,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T07%3A08%3A56.1522303Z''\"","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-01-15T14%3A10%3A03.3268281Z''\"","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 @@ -1501,7 +1612,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:02 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1533,15 +1644,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T17:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T17: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1550,7 +1661,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:03 GMT + - Fri, 15 Jan 2021 14:14:20 GMT expires: - '-1' pragma: @@ -1586,24 +1697,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmshhfn","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmshhfn","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;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vm6nvvh","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm6nvvh","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '7856' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:05 GMT + - Fri, 15 Jan 2021 14:14:21 GMT expires: - '-1' pragma: @@ -1636,48 +1747,52 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmshhfn","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmshhfn","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;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vm6nvvh","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm6nvvh","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '7856' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:08 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + 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 @@ -1687,37 +1802,43 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + 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=2020-10-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/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 07:12:10 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + - 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/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-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-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -1737,30 +1858,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:11 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: @@ -1768,8 +1895,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1784,30 +1911,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:13 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: @@ -1815,8 +1948,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1831,30 +1964,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:14 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: @@ -1862,8 +2001,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1878,30 +2017,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:16 GMT + - Fri, 15 Jan 2021 14:14: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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: @@ -1909,8 +2054,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1925,39 +2070,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:18 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-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: + 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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1972,26 +2123,36 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cd56628d-8d2b-43f4-8fc9-b775a38c1fb8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:19 GMT + - Fri, 15 Jan 2021 14:14: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: @@ -1999,8 +2160,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2015,24 +2176,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-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/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;clitest.rg000001;clitest-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2531' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:21 GMT + - Fri, 15 Jan 2021 14:14:30 GMT expires: - '-1' pragma: @@ -2048,16 +2209,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' 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"}}' + body: null headers: Accept: - application/json @@ -2067,48 +2226,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:12:23 GMT + - Fri, 15 Jan 2021 14:14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: - - '1194' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2123,15 +2282,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2140,7 +2299,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:26 GMT + - Fri, 15 Jan 2021 14:14:32 GMT expires: - '-1' pragma: @@ -2156,7 +2315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -2176,15 +2335,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2193,7 +2352,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:27 GMT + - Fri, 15 Jan 2021 14:14:33 GMT expires: - '-1' pragma: @@ -2209,7 +2368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -2229,15 +2388,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2246,7 +2405,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:29 GMT + - Fri, 15 Jan 2021 14:14:35 GMT expires: - '-1' pragma: @@ -2262,7 +2421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -2282,15 +2441,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2299,7 +2458,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:30 GMT + - Fri, 15 Jan 2021 14:14:36 GMT expires: - '-1' pragma: @@ -2315,7 +2474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -2335,15 +2494,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2352,7 +2511,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:32 GMT + - Fri, 15 Jan 2021 14:14:37 GMT expires: - '-1' pragma: @@ -2368,7 +2527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: @@ -2388,15 +2547,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2405,7 +2564,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:33 GMT + - Fri, 15 Jan 2021 14:14:38 GMT expires: - '-1' pragma: @@ -2421,7 +2580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: @@ -2441,15 +2600,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2458,7 +2617,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:35 GMT + - Fri, 15 Jan 2021 14:14:40 GMT expires: - '-1' pragma: @@ -2474,7 +2633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '134' x-powered-by: - ASP.NET status: @@ -2494,15 +2653,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2511,7 +2670,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:36 GMT + - Fri, 15 Jan 2021 14:14:41 GMT expires: - '-1' pragma: @@ -2527,7 +2686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '133' x-powered-by: - ASP.NET status: @@ -2547,15 +2706,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2564,7 +2723,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:38 GMT + - Fri, 15 Jan 2021 14:14:42 GMT expires: - '-1' pragma: @@ -2580,7 +2739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '132' x-powered-by: - ASP.NET status: @@ -2600,15 +2759,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2617,7 +2776,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:39 GMT + - Fri, 15 Jan 2021 14:14:44 GMT expires: - '-1' pragma: @@ -2633,7 +2792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '131' x-powered-by: - ASP.NET status: @@ -2653,15 +2812,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2670,7 +2829,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:41 GMT + - Fri, 15 Jan 2021 14:14:45 GMT expires: - '-1' pragma: @@ -2686,7 +2845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '130' x-powered-by: - ASP.NET status: @@ -2706,15 +2865,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2723,7 +2882,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:42 GMT + - Fri, 15 Jan 2021 14:14:46 GMT expires: - '-1' pragma: @@ -2739,7 +2898,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '129' x-powered-by: - ASP.NET status: @@ -2759,15 +2918,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2776,7 +2935,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:44 GMT + - Fri, 15 Jan 2021 14:14:48 GMT expires: - '-1' pragma: @@ -2792,7 +2951,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '128' x-powered-by: - ASP.NET status: @@ -2812,15 +2971,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2829,7 +2988,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:45 GMT + - Fri, 15 Jan 2021 14:14:49 GMT expires: - '-1' pragma: @@ -2845,7 +3004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '127' x-powered-by: - ASP.NET status: @@ -2865,15 +3024,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2882,7 +3041,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:47 GMT + - Fri, 15 Jan 2021 14:14:51 GMT expires: - '-1' pragma: @@ -2898,7 +3057,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '126' x-powered-by: - ASP.NET status: @@ -2918,15 +3077,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"InProgress","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2935,7 +3094,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:48 GMT + - Fri, 15 Jan 2021 14:14:53 GMT expires: - '-1' pragma: @@ -2951,7 +3110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '125' x-powered-by: - ASP.NET status: @@ -2971,24 +3130,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/234feff4-e707-4914-a5b8-05990db38a5f?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"234feff4-e707-4914-a5b8-05990db38a5f","name":"234feff4-e707-4914-a5b8-05990db38a5f","status":"Succeeded","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"2021-01-15T14:14:22.3667434Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2751179e-e81c-417e-b768-5deb3740ae54"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:50 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -3004,7 +3163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '124' x-powered-by: - ASP.NET status: @@ -3024,30 +3183,32 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2751179e-e81c-417e-b768-5deb3740ae54?api-version=2020-10-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2751179e-e81c-417e-b768-5deb3740ae54","name":"2751179e-e81c-417e-b768-5deb3740ae54","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.8885366S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:14:22.3667434Z","endTime":"2021-01-15T14:14:53.25528Z","activityId":"f555c516-573b-11eb-9148-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '966' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:51 GMT + - Fri, 15 Jan 2021 14:14: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: @@ -3057,7 +3218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '148' x-powered-by: - ASP.NET status: @@ -3077,30 +3238,68 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.RecoveryServices/vaults/clitest-vault000002/backupOperations/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: body: - string: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"InProgress","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"0001-01-01T00:00:00"}' + string: "{\r\n \"name\": \"clitest-vm000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004\",\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\": \"9c9f8c87-705a-4912-b361-d2870122cd79\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\",\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-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n + \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\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-vm000004VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": + \"clitest-vm000004\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n + \ \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.7.41491.1004\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n + \ \"time\": \"2021-01-15T14:14:52+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000004_OsDisk_1_924a80e8ef9442008b6af64d4eb4a65c\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:12:39.3507993+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-01-15T14:13:57.1780851+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: - - '188' + - '3583' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:12:53 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3109,10 +3308,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3925,Microsoft.Compute/LowCostGet30Min;31907 status: code: 200 message: OK @@ -3130,24 +3327,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/acbc1c4b-f389-4114-8852-efec739c9822?api-version=2016-12-01 + 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: '{"id":"acbc1c4b-f389-4114-8852-efec739c9822","name":"acbc1c4b-f389-4114-8852-efec739c9822","status":"Succeeded","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"2020-12-18T07:12:23.9873895Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2deac82b-9ead-4893-98de-c3d04cf2a532"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-15T14%3A10%3A03.3268281Z''\"","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: - - '304' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:54 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -3162,10 +3359,6 @@ interactions: - 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 @@ -3183,32 +3376,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2deac82b-9ead-4893-98de-c3d04cf2a532?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2deac82b-9ead-4893-98de-c3d04cf2a532","name":"2deac82b-9ead-4893-98de-c3d04cf2a532","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.846078S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T07:12:23.9873895Z","endTime":"2020-12-18T07:12:54.8334675Z","activityId":"5209b0e5-4100-11eb-85e8-c03eba45757e"}}' + 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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '967' + - '828' content-type: - application/json date: - - Fri, 18 Dec 2020 07:12:56 GMT + - Fri, 15 Jan 2021 14:14: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: @@ -3238,68 +3429,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: "{\r\n \"name\": \"clitest-vm000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004\",\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\": \"676ad258-dacb-4fa2-8c07-e71da4715fa5\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\",\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-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\"\r\n - \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n - \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\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-vm000004VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"clitest-vm000004\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n - \ \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.7.41491.992\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T07:12:53+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000004_disk1_20297b3e3e7342c98e5e4b2803e77a92\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:11:24.2664348+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\": \"2020-12-18T07:11:47.4854611+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}" + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '3573' + - '2816' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 07:12:57 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3308,8 +3461,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31988 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -3324,41 +3479,623 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - 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 + 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=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T07%3A08%3A56.1522303Z''\"","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: '' 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '539' - content-type: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 07:13:00 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/operationResults/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/operationResults/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5cbde9ec-87ac-4bac-af48-5d7a48ce39a4?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 15 Jan 2021 14:15:07 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: + - '141' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmb3e57","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmb3e57","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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vmo4gkr","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmo4gkr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6596' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '148' + 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-vm000004", + "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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15:08 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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 + response: + body: + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '186' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '53' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -3376,24 +4113,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-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":["2020-12-18T17:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T17:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '828' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:02 GMT + - Fri, 15 Jan 2021 14:15:10 GMT expires: - '-1' pragma: @@ -3409,7 +4146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '52' x-powered-by: - ASP.NET status: @@ -3429,24 +4166,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1271' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:04 GMT + - Fri, 15 Jan 2021 14:15:11 GMT expires: - '-1' pragma: @@ -3462,7 +4199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '51' x-powered-by: - ASP.NET status: @@ -3482,24 +4219,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1271' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:05 GMT + - Fri, 15 Jan 2021 14:15:12 GMT expires: - '-1' pragma: @@ -3515,16 +4252,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '50' 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-vm000004", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy", - "protectedItemType": "Microsoft.Compute/virtualMachines"}}' + body: null headers: Accept: - application/json @@ -3534,48 +4269,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' 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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '186' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:13:08 GMT + - Fri, 15 Jan 2021 14:15: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: - - '1195' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3590,24 +4325,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:10 GMT + - Fri, 15 Jan 2021 14:15:15 GMT expires: - '-1' pragma: @@ -3623,7 +4358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '48' x-powered-by: - ASP.NET status: @@ -3643,24 +4378,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:11 GMT + - Fri, 15 Jan 2021 14:15:17 GMT expires: - '-1' pragma: @@ -3676,7 +4411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '47' x-powered-by: - ASP.NET status: @@ -3696,24 +4431,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:13 GMT + - Fri, 15 Jan 2021 14:15:18 GMT expires: - '-1' pragma: @@ -3729,7 +4464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '46' x-powered-by: - ASP.NET status: @@ -3749,24 +4484,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:14 GMT + - Fri, 15 Jan 2021 14:15:20 GMT expires: - '-1' pragma: @@ -3782,7 +4517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '45' x-powered-by: - ASP.NET status: @@ -3802,24 +4537,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:16 GMT + - Fri, 15 Jan 2021 14:15:21 GMT expires: - '-1' pragma: @@ -3835,7 +4570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '44' x-powered-by: - ASP.NET status: @@ -3855,24 +4590,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:18 GMT + - Fri, 15 Jan 2021 14:15:22 GMT expires: - '-1' pragma: @@ -3888,7 +4623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '43' x-powered-by: - ASP.NET status: @@ -3908,24 +4643,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:19 GMT + - Fri, 15 Jan 2021 14:15:23 GMT expires: - '-1' pragma: @@ -3941,7 +4676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '42' x-powered-by: - ASP.NET status: @@ -3961,24 +4696,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:21 GMT + - Fri, 15 Jan 2021 14:15:25 GMT expires: - '-1' pragma: @@ -3994,7 +4729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '41' x-powered-by: - ASP.NET status: @@ -4014,24 +4749,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:22 GMT + - Fri, 15 Jan 2021 14:15:26 GMT expires: - '-1' pragma: @@ -4047,7 +4782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '40' x-powered-by: - ASP.NET status: @@ -4067,24 +4802,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:24 GMT + - Fri, 15 Jan 2021 14:15:27 GMT expires: - '-1' pragma: @@ -4100,7 +4835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '39' x-powered-by: - ASP.NET status: @@ -4120,24 +4855,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:25 GMT + - Fri, 15 Jan 2021 14:15:29 GMT expires: - '-1' pragma: @@ -4153,7 +4888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '38' x-powered-by: - ASP.NET status: @@ -4173,24 +4908,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:27 GMT + - Fri, 15 Jan 2021 14:15:30 GMT expires: - '-1' pragma: @@ -4206,7 +4941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '37' x-powered-by: - ASP.NET status: @@ -4226,24 +4961,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:29 GMT + - Fri, 15 Jan 2021 14:15:31 GMT expires: - '-1' pragma: @@ -4259,7 +4994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '36' x-powered-by: - ASP.NET status: @@ -4279,24 +5014,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:30 GMT + - Fri, 15 Jan 2021 14:15:32 GMT expires: - '-1' pragma: @@ -4312,7 +5047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '35' x-powered-by: - ASP.NET status: @@ -4332,24 +5067,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:32 GMT + - Fri, 15 Jan 2021 14:15:34 GMT expires: - '-1' pragma: @@ -4365,7 +5100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '34' x-powered-by: - ASP.NET status: @@ -4385,24 +5120,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:33 GMT + - Fri, 15 Jan 2021 14:15:35 GMT expires: - '-1' pragma: @@ -4418,7 +5153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '33' x-powered-by: - ASP.NET status: @@ -4438,24 +5173,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:35 GMT + - Fri, 15 Jan 2021 14:15:36 GMT expires: - '-1' pragma: @@ -4471,7 +5206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '32' x-powered-by: - ASP.NET status: @@ -4491,24 +5226,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:37 GMT + - Fri, 15 Jan 2021 14:15:38 GMT expires: - '-1' pragma: @@ -4524,7 +5259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '31' x-powered-by: - ASP.NET status: @@ -4544,24 +5279,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"InProgress","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"InProgress","startTime":"2021-01-15T14:15:09.12197Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '186' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:38 GMT + - Fri, 15 Jan 2021 14:15:39 GMT expires: - '-1' pragma: @@ -4577,7 +5312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '30' x-powered-by: - ASP.NET status: @@ -4597,24 +5332,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/32427860-bc87-48e8-a8a5-875a1018c593?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58?api-version=2020-10-01 response: body: - string: '{"id":"32427860-bc87-48e8-a8a5-875a1018c593","name":"32427860-bc87-48e8-a8a5-875a1018c593","status":"Succeeded","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"2020-12-18T07:13:08.4412754Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f273463b-4f89-4b0a-9402-fa75d96ac876"}}' + string: '{"id":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","name":"3596e0ae-1df0-4d1d-b1b7-eaf9c2f39b58","status":"Succeeded","startTime":"2021-01-15T14:15:09.12197Z","endTime":"2021-01-15T14:15:09.12197Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1ccf4d55-91f7-47bd-856a-169d2cb9f827"}}' headers: cache-control: - no-cache content-length: - - '304' + - '300' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:40 GMT + - Fri, 15 Jan 2021 14:15:40 GMT expires: - '-1' pragma: @@ -4630,7 +5365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '29' x-powered-by: - ASP.NET status: @@ -4650,25 +5385,25 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f273463b-4f89-4b0a-9402-fa75d96ac876?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1ccf4d55-91f7-47bd-856a-169d2cb9f827?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f273463b-4f89-4b0a-9402-fa75d96ac876","name":"f273463b-4f89-4b0a-9402-fa75d96ac876","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30.8993043S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T07:13:08.4412754Z","endTime":"2020-12-18T07:13:39.3405797Z","activityId":"744690e9-4100-11eb-bcc8-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1ccf4d55-91f7-47bd-856a-169d2cb9f827","name":"1ccf4d55-91f7-47bd-856a-169d2cb9f827","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30.7992928S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:15:09.12197Z","endTime":"2021-01-15T14:15:39.9212628Z","activityId":"0a4ce713-573c-11eb-ac4b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '968' + - '966' content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:41 GMT + - Fri, 15 Jan 2021 14:15:41 GMT expires: - '-1' pragma: @@ -4685,7 +5420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4705,12 +5440,12 @@ interactions: ParameterSetName: - --backup-management-type -n -v -g User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -4722,7 +5457,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:42 GMT + - Fri, 15 Jan 2021 14:15:41 GMT expires: - '-1' pragma: @@ -4758,7 +5493,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -4767,16 +5502,16 @@ interactions: \ \"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\": \"28984057-7065-44cb-b0e5-d68864081e44\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ea667072-8135-4472-8919-bfb8324ac32d\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_ed101b084d33419bb93ceec2b55485d1\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\",\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_disk1_ed101b084d33419bb93ceec2b55485d1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_8a80b9128e384e4596fc751432e1175e\"\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\": @@ -4790,11 +5525,11 @@ interactions: cache-control: - no-cache content-length: - - '2204' + - '2210' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:13:42 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -4811,7 +5546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31985 + - Microsoft.Compute/LowCostGet3Min;3936,Microsoft.Compute/LowCostGet30Min;31897 status: code: 200 message: OK @@ -4829,12 +5564,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' @@ -4846,7 +5581,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:45 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -4882,12 +5617,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' @@ -4899,7 +5634,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:47 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -4915,7 +5650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4935,15 +5670,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2260824605737359848","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + 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":"2261141265946485917","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141266205634865","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache @@ -4952,7 +5687,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:47 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -4968,7 +5703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -4989,15 +5724,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2260824605737359848","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + 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":"2261141265946485917","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141266205634865","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache @@ -5006,7 +5741,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:49 GMT + - Fri, 15 Jan 2021 14:15:44 GMT expires: - '-1' pragma: @@ -5022,7 +5757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -5045,28 +5780,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 07:13:52 GMT + - Fri, 15 Jan 2021 14:15:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -5074,7 +5809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -5095,15 +5830,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5112,7 +5847,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:52 GMT + - Fri, 15 Jan 2021 14:15:44 GMT expires: - '-1' pragma: @@ -5128,7 +5863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -5149,15 +5884,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5166,7 +5901,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:54 GMT + - Fri, 15 Jan 2021 14:15:45 GMT expires: - '-1' pragma: @@ -5182,7 +5917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -5203,15 +5938,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5220,7 +5955,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:56 GMT + - Fri, 15 Jan 2021 14:15:47 GMT expires: - '-1' pragma: @@ -5236,7 +5971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -5257,15 +5992,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5274,7 +6009,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:58 GMT + - Fri, 15 Jan 2021 14:15:48 GMT expires: - '-1' pragma: @@ -5290,7 +6025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -5311,15 +6046,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5328,7 +6063,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:13:59 GMT + - Fri, 15 Jan 2021 14:15:49 GMT expires: - '-1' pragma: @@ -5344,7 +6079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -5365,15 +6100,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5382,7 +6117,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:01 GMT + - Fri, 15 Jan 2021 14:15:51 GMT expires: - '-1' pragma: @@ -5398,7 +6133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -5419,15 +6154,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"InProgress","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5436,7 +6171,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:02 GMT + - Fri, 15 Jan 2021 14:15:52 GMT expires: - '-1' pragma: @@ -5452,7 +6187,61 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 + response: + body: + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"InProgress","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '135' x-powered-by: - ASP.NET status: @@ -5473,15 +6262,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bfa48a24-2f6a-44f0-8ded-55e948eebbfa?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa3f8c9e-180a-484c-9db2-e3542a67ae74?api-version=2020-10-01 response: body: - string: '{"id":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","name":"bfa48a24-2f6a-44f0-8ded-55e948eebbfa","status":"Succeeded","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"2020-12-18T07:13:52.6202294Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4878a62c-c0bf-4ef6-93d9-6e40c919ba9f"}}' + string: '{"id":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","name":"aa3f8c9e-180a-484c-9db2-e3542a67ae74","status":"Succeeded","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"2021-01-15T14:15:44.5881168Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"000c63e4-6bcd-47ff-a891-913091385121"}}' headers: cache-control: - no-cache @@ -5490,7 +6279,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:04 GMT + - Fri, 15 Jan 2021 14:15:55 GMT expires: - '-1' pragma: @@ -5506,7 +6295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '134' x-powered-by: - ASP.NET status: @@ -5527,16 +6316,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4878a62c-c0bf-4ef6-93d9-6e40c919ba9f?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/000c63e4-6bcd-47ff-a891-913091385121?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4878a62c-c0bf-4ef6-93d9-6e40c919ba9f","name":"4878a62c-c0bf-4ef6-93d9-6e40c919ba9f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.2937481S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T07:13:52.6202294Z","endTime":"2020-12-18T07:14:03.9139775Z","activityId":"92b2119a-4100-11eb-82f0-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/000c63e4-6bcd-47ff-a891-913091385121","name":"000c63e4-6bcd-47ff-a891-913091385121","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.0771608S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:15:44.5881168Z","endTime":"2021-01-15T14:15:55.6652776Z","activityId":"2781ba84-573c-11eb-a036-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5545,7 +6334,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:06 GMT + - Fri, 15 Jan 2021 14:15:55 GMT expires: - '-1' pragma: @@ -5562,7 +6351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -5582,15 +6371,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605737359848","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":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:13:52.6202294Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:45.3267421"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141265946485917","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":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:15:44.5881168Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:47.6936191"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141266205634865","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache @@ -5599,7 +6388,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:06 GMT + - Fri, 15 Jan 2021 14:15:56 GMT expires: - '-1' pragma: @@ -5615,7 +6404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -5636,15 +6425,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605737359848","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":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:13:52.6202294Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:43.2868829"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141265946485917","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":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:15:44.5881168Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:47.2488599"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261141266205634865","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache @@ -5653,7 +6442,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:08 GMT + - Fri, 15 Jan 2021 14:15:56 GMT expires: - '-1' pragma: @@ -5669,7 +6458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -5692,28 +6481,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + 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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 07:14:10 GMT + - Fri, 15 Jan 2021 14:15:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -5721,7 +6510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -5742,15 +6531,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5759,7 +6548,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:12 GMT + - Fri, 15 Jan 2021 14:15:57 GMT expires: - '-1' pragma: @@ -5796,15 +6585,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5813,7 +6602,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:14 GMT + - Fri, 15 Jan 2021 14:15:58 GMT expires: - '-1' pragma: @@ -5850,15 +6639,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5867,7 +6656,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:16 GMT + - Fri, 15 Jan 2021 14:16:00 GMT expires: - '-1' pragma: @@ -5904,15 +6693,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5921,7 +6710,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:17 GMT + - Fri, 15 Jan 2021 14:16:01 GMT expires: - '-1' pragma: @@ -5958,15 +6747,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5975,7 +6764,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:19 GMT + - Fri, 15 Jan 2021 14:16:02 GMT expires: - '-1' pragma: @@ -6012,15 +6801,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"InProgress","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6029,7 +6818,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:20 GMT + - Fri, 15 Jan 2021 14:16:04 GMT expires: - '-1' pragma: @@ -6066,24 +6855,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f2716831-355c-419f-8e1e-f43a7ae34f25?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"f2716831-355c-419f-8e1e-f43a7ae34f25","name":"f2716831-355c-419f-8e1e-f43a7ae34f25","status":"Succeeded","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"2020-12-18T07:14:11.4529936Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3e209c3a-76ac-4f2f-b5cd-648f5fa582ce"}}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:22 GMT + - Fri, 15 Jan 2021 14:16:05 GMT expires: - '-1' pragma: @@ -6120,25 +6909,133 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3e209c3a-76ac-4f2f-b5cd-648f5fa582ce?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3e209c3a-76ac-4f2f-b5cd-648f5fa582ce","name":"3e209c3a-76ac-4f2f-b5cd-648f5fa582ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.1710379S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T07:14:11.4529936Z","endTime":"2020-12-18T07:14:22.6240315Z","activityId":"9df190a7-4100-11eb-9764-c03eba45757e"}}' + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"InProgress","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '971' + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3?api-version=2020-10-01 + response: + body: + string: '{"id":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","name":"01e2aed2-6c1a-49d2-8d65-7dbbbbde5bf3","status":"Succeeded","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"2021-01-15T14:15:57.7997467Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ffb24354-b2cf-4aeb-b4b5-725f1dff352c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/ffb24354-b2cf-4aeb-b4b5-725f1dff352c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ffb24354-b2cf-4aeb-b4b5-725f1dff352c","name":"ffb24354-b2cf-4aeb-b4b5-725f1dff352c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.3471163S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:15:57.7997467Z","endTime":"2021-01-15T14:16:09.146863Z","activityId":"2f5f6904-573c-11eb-b2c5-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '970' content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:24 GMT + - Fri, 15 Jan 2021 14:16:10 GMT expires: - '-1' pragma: @@ -6177,8 +7074,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -6203,7 +7100,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:27 GMT + - Fri, 15 Jan 2021 14:16:10 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_disk_exclusion.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_disk_exclusion.yaml index 7dd55343e12..e95df28e273 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_disk_exclusion.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_disk_exclusion.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T07%3A14%3A46.9480676Z''\"","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-01-16T07%3A58%3A52.3813542Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:14:48 GMT + - Sat, 16 Jan 2021 07:58:52 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '208' status: code: 201 message: Created @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T07:14:33Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-16T07:58:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:14:49 GMT + - Sat, 16 Jan 2021 07:58:53 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 07:14:50 GMT + - Sat, 16 Jan 2021 07:58:54 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 07:19:50 GMT + - Sat, 16 Jan 2021 08:03:54 GMT source-age: - - '107' + - '259' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, HIT + - MISS, HIT x-cache-hits: - - 1, 1 + - 0, 2 x-content-type-options: - nosniff x-fastly-request-id: - - cec07cb625a7c7762259f0e607517fdacd975f4b + - 8d79a0f2f03259727d33304568c901ae7e7f4f67 x-frame-options: - deny x-github-request-id: - - EFFE:43CE:42785A:4B3DF4:5FDC5589 + - 4958:6BF0:159BF2:16D065:60027BE5 x-served-by: - - cache-mia11362-MIA + - cache-sin18047-SIN x-timer: - - S1608275690.211297,VS0,VE27 + - S1610783934.059728,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:14:50 GMT + - Sat, 16 Jan 2021 07:58:53 GMT expires: - '-1' pragma: @@ -293,18 +290,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_ohEHBnRrj1sFDTWmvMzNsy1dmDscST0j","name":"vm_deploy_ohEHBnRrj1sFDTWmvMzNsy1dmDscST0j","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15116560860531998157","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T07:14:57.4440803Z","duration":"PT3.285865S","correlationId":"071c31b6-b2fb-47c8-af9a-10025e5f4376","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ev5hCVxwBBK7yZXj3JNwfDKfikdeM9Nw","name":"vm_deploy_Ev5hCVxwBBK7yZXj3JNwfDKfikdeM9Nw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6492170163284096050","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-16T07:58:56.7257654Z","duration":"PT1.3294032S","correlationId":"b8d34617-c46a-4e82-bd3c-ccaf8f2f7776","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_ohEHBnRrj1sFDTWmvMzNsy1dmDscST0j/operationStatuses/08585933311913194129?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ev5hCVxwBBK7yZXj3JNwfDKfikdeM9Nw/operationStatuses/08585908229500812742?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -312,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:14:58 GMT + - Sat, 16 Jan 2021 07:58:56 GMT expires: - '-1' pragma: @@ -322,7 +319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -340,10 +337,53 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229500812742?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: + - Sat, 16 Jan 2021 07:59:26 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933311913194129?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229500812742?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:15:30 GMT + - Sat, 16 Jan 2021 07:59:57 GMT expires: - '-1' pragma: @@ -383,10 +423,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933311913194129?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229500812742?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -398,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:00 GMT + - Sat, 16 Jan 2021 08:00:27 GMT expires: - '-1' pragma: @@ -426,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933311913194129?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229500812742?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -441,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:31 GMT + - Sat, 16 Jan 2021 08:00:58 GMT expires: - '-1' pragma: @@ -469,13 +509,13 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_ohEHBnRrj1sFDTWmvMzNsy1dmDscST0j","name":"vm_deploy_ohEHBnRrj1sFDTWmvMzNsy1dmDscST0j","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15116560860531998157","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T07:16:01.9222191Z","duration":"PT1M7.7640038S","correlationId":"071c31b6-b2fb-47c8-af9a-10025e5f4376","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Ev5hCVxwBBK7yZXj3JNwfDKfikdeM9Nw","name":"vm_deploy_Ev5hCVxwBBK7yZXj3JNwfDKfikdeM9Nw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6492170163284096050","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-16T08:00:28.5780639Z","duration":"PT1M33.1817017S","correlationId":"b8d34617-c46a-4e82-bd3c-ccaf8f2f7776","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 @@ -484,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:32 GMT + - Sat, 16 Jan 2021 08:00:58 GMT expires: - '-1' pragma: @@ -512,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -521,16 +561,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\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\": @@ -544,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T07:16:33+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T08:00:58+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:15:34.5355202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.0454037+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\": \"2020-12-18T07:15:59.5515113+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:00:27.9356744+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}" @@ -561,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3419' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:33 GMT + - Sat, 16 Jan 2021 08:00:58 GMT expires: - '-1' pragma: @@ -582,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31978 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -590,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -600,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"d0fda98d-ebbc-4cb7-8997-ecbe3ca75852\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7145b1d9-75bd-4fac-86e3-a1e8a8d4d02a\\\"\",\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\": \"b374cfa1-00f7-464f-849e-cb0967a676c0\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7bfdd0a7-adb3-4ac8-a9c4-b6ba4e5a2c1c\",\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/\\\"d0fda98d-ebbc-4cb7-8997-ecbe3ca75852\\\"\",\r\n + \ \"etag\": \"W/\\\"7145b1d9-75bd-4fac-86e3-a1e8a8d4d02a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -625,8 +662,8 @@ interactions: \ },\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\": - \"0du0oyqdwzsudciombsgsvv0qc.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-56-A0-3A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"b1lnjapjak4ezhe2yb021s3rdb.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C8-1B-D6\",\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\": @@ -640,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:33 GMT + - Sat, 16 Jan 2021 08:00:59 GMT etag: - - W/"d0fda98d-ebbc-4cb7-8997-ecbe3ca75852" + - W/"7145b1d9-75bd-4fac-86e3-a1e8a8d4d02a" expires: - '-1' pragma: @@ -659,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f253f57-5208-44a9-b49c-a7903473d0fc + - 200ef6f9-f6e9-49c7-a16e-d801d02612e4 status: code: 200 message: OK @@ -667,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -677,22 +714,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"17490c06-c662-4aba-b50d-6dafe47fcf41\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"bdda535c-9dad-4ebe-867e-0125c9df43c7\\\"\",\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\": \"4d972e03-c7ef-4cf7-b3e6-4b302f881d2f\",\r\n - \ \"ipAddress\": \"52.163.241.127\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"c58b67d2-a0ce-4268-940e-b643cb0da9d7\",\r\n + \ \"ipAddress\": \"13.67.109.191\",\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}" @@ -700,13 +734,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1182' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:16:34 GMT + - Sat, 16 Jan 2021 08:00:59 GMT etag: - - W/"17490c06-c662-4aba-b50d-6dafe47fcf41" + - W/"bdda535c-9dad-4ebe-867e-0125c9df43c7" expires: - '-1' pragma: @@ -723,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de21befe-7634-48d8-85dd-81de3911d510 + - 739bfa50-2324-487d-8293-f12954c9df94 status: code: 200 message: OK @@ -741,12 +775,12 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -758,7 +792,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:17:03 GMT + - Sat, 16 Jan 2021 08:01:21 GMT expires: - '-1' pragma: @@ -799,12 +833,12 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -816,7 +850,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:17:04 GMT + - Sat, 16 Jan 2021 08:01:22 GMT expires: - '-1' pragma: @@ -832,7 +866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -852,7 +886,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -861,16 +895,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\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\": @@ -884,16 +918,16 @@ interactions: \ {\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\": \"2020-12-18T07:17:06+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T08:01:23+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:15:34.5355202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.0454037+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\": \"2020-12-18T07:15:59.5515113+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:00:27.9356744+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}" @@ -901,11 +935,11 @@ interactions: cache-control: - no-cache content-length: - - '3419' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:06 GMT + - Sat, 16 Jan 2021 08:01:23 GMT expires: - '-1' pragma: @@ -922,7 +956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31977 + - Microsoft.Compute/LowCostGet3Min;3970,Microsoft.Compute/LowCostGet30Min;31970 status: code: 200 message: OK @@ -930,9 +964,9 @@ interactions: body: '{"location": "southeastasia", "tags": {"MabUsed": "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", "AutoShutdown": "No"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": - {"osType": "Windows", "name": "clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"osType": "Windows", "name": "clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "storageAccountType": "Premium_LRS"}}, "dataDisks": [{"lun": 0, "name": "mydisk1", "createOption": "Empty", "diskSizeGB": 10, "managedDisk": {}}]}, "osProfile": {"computerName": "clitest-vm000003", "adminUsername": "clitest-vm000003", "windowsConfiguration": @@ -950,13 +984,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1370' + - '1376' Content-Type: - application/json ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -965,16 +999,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -992,15 +1026,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/907e7881-9fa9-473a-bcba-6d829d41cada?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/cd0a7092-8680-4366-a918-6e1608269bfc?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2503' + - '2509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:13 GMT + - Sat, 16 Jan 2021 08:01:25 GMT expires: - '-1' pragma: @@ -1017,9 +1051,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196 + - Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1190 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -1037,14 +1071,14 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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/providers/Microsoft.Compute/locations/southeastasia/operations/907e7881-9fa9-473a-bcba-6d829d41cada?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/cd0a7092-8680-4366-a918-6e1608269bfc?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-18T07:17:09.9274446+00:00\",\r\n \"endTime\": - \"2020-12-18T07:17:16.4587424+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"907e7881-9fa9-473a-bcba-6d829d41cada\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-16T08:01:24.5448164+00:00\",\r\n \"endTime\": + \"2021-01-16T08:01:30.5603682+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cd0a7092-8680-4366-a918-6e1608269bfc\"\r\n}" headers: cache-control: - no-cache @@ -1053,7 +1087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:44 GMT + - Sat, 16 Jan 2021 08:01:56 GMT expires: - '-1' pragma: @@ -1070,7 +1104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1088,7 +1122,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -1097,16 +1131,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1125,11 +1159,11 @@ interactions: cache-control: - no-cache content-length: - - '2711' + - '2717' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:45 GMT + - Sat, 16 Jan 2021 08:01:56 GMT expires: - '-1' pragma: @@ -1146,7 +1180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31973 + - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31965 status: code: 200 message: OK @@ -1164,7 +1198,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1173,16 +1207,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1203,20 +1237,20 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T07:17:38+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \ \"time\": \"2021-01-16T08:01:49+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:15:34.5355202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.0454037+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"mydisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2020-12-18T07:17:11.1774475+00:00\"\r\n }\r\n ]\r\n + \"2021-01-16T08:01:25.6072969+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\": \"2020-12-18T07:17:16.4431473+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:01:30.5603682+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}" @@ -1224,11 +1258,11 @@ interactions: cache-control: - no-cache content-length: - - '4404' + - '4413' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:46 GMT + - Sat, 16 Jan 2021 08:01:56 GMT expires: - '-1' pragma: @@ -1245,7 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31972 + - Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31964 status: code: 200 message: OK @@ -1253,9 +1287,9 @@ interactions: body: '{"location": "southeastasia", "tags": {"MabUsed": "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", "AutoShutdown": "No"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": - {"osType": "Windows", "name": "clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"osType": "Windows", "name": "clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "storageAccountType": "Premium_LRS"}}, "dataDisks": [{"lun": 0, "name": "mydisk1", "caching": "None", "createOption": "Empty", "diskSizeGB": 10, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/mydisk1", @@ -1276,13 +1310,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1734' + - '1740' Content-Type: - application/json ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -1291,16 +1325,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1323,15 +1357,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/168eceb1-ff39-4732-9c6c-3543fc59098f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/c51a97a4-0a7c-44a3-aa2e-efa796c90c68?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3003' + - '3009' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:17:53 GMT + - Sat, 16 Jan 2021 08:01:59 GMT expires: - '-1' pragma: @@ -1348,9 +1382,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1195 + - Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1189 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -1368,14 +1402,14 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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/providers/Microsoft.Compute/locations/southeastasia/operations/168eceb1-ff39-4732-9c6c-3543fc59098f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/c51a97a4-0a7c-44a3-aa2e-efa796c90c68?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-18T07:17:49.9905057+00:00\",\r\n \"endTime\": - \"2020-12-18T07:17:55.8968519+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"168eceb1-ff39-4732-9c6c-3543fc59098f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-16T08:01:58.2788835+00:00\",\r\n \"endTime\": + \"2021-01-16T08:02:03.9820452+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c51a97a4-0a7c-44a3-aa2e-efa796c90c68\"\r\n}" headers: cache-control: - no-cache @@ -1384,7 +1418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:18:24 GMT + - Sat, 16 Jan 2021 08:02:29 GMT expires: - '-1' pragma: @@ -1401,7 +1435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29978 status: code: 200 message: OK @@ -1419,7 +1453,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -1428,16 +1462,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1461,11 +1495,11 @@ interactions: cache-control: - no-cache content-length: - - '3211' + - '3217' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:18:24 GMT + - Sat, 16 Jan 2021 08:02:29 GMT expires: - '-1' pragma: @@ -1482,7 +1516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31968 + - Microsoft.Compute/LowCostGet3Min;3961,Microsoft.Compute/LowCostGet30Min;31953 status: code: 200 message: OK @@ -1500,7 +1534,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1509,16 +1543,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1544,24 +1578,24 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T07:18:24+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \ \"time\": \"2021-01-16T08:02:19+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:15:34.5355202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.0454037+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"mydisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2020-12-18T07:17:11.1774475+00:00\"\r\n }\r\n ]\r\n + \"2021-01-16T08:01:25.6072969+00:00\"\r\n }\r\n ]\r\n \ },\r\n {\r\n \"name\": \"mydisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:17:50.8655455+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:01:59.1070071+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\": \"2020-12-18T07:17:55.8968519+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:02:03.9664221+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}" @@ -1569,11 +1603,11 @@ interactions: cache-control: - no-cache content-length: - - '5228' + - '5237' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:18:25 GMT + - Sat, 16 Jan 2021 08:02:29 GMT expires: - '-1' pragma: @@ -1590,7 +1624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31967 + - Microsoft.Compute/LowCostGet3Min;3960,Microsoft.Compute/LowCostGet30Min;31952 status: code: 200 message: OK @@ -1598,9 +1632,9 @@ interactions: body: '{"location": "southeastasia", "tags": {"MabUsed": "Yes", "Owner": "sisi", "Purpose": "CLITest", "DeleteBy": "12-2099", "AutoShutdown": "No"}, "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "storageProfile": {"osDisk": - {"osType": "Windows", "name": "clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"osType": "Windows", "name": "clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0", + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595", "storageAccountType": "Premium_LRS"}}, "dataDisks": [{"lun": 0, "name": "mydisk1", "caching": "None", "createOption": "Empty", "diskSizeGB": 10, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/mydisk1", @@ -1624,13 +1658,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2098' + - '2104' Content-Type: - application/json ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -1639,16 +1673,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1676,15 +1710,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/c398fe27-5cf9-4adc-aff6-4e222cae3b0f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/859c3406-8b2d-41f9-bb31-d4e350a89b61?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3503' + - '3509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:18:32 GMT + - Sat, 16 Jan 2021 08:02:32 GMT expires: - '-1' pragma: @@ -1701,7 +1735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1194 + - Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1188 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1721,14 +1755,14 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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/providers/Microsoft.Compute/locations/southeastasia/operations/c398fe27-5cf9-4adc-aff6-4e222cae3b0f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/859c3406-8b2d-41f9-bb31-d4e350a89b61?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-18T07:18:29.6472891+00:00\",\r\n \"endTime\": - \"2020-12-18T07:18:35.3816966+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c398fe27-5cf9-4adc-aff6-4e222cae3b0f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-16T08:02:31.9663133+00:00\",\r\n \"endTime\": + \"2021-01-16T08:02:37.3725574+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"859c3406-8b2d-41f9-bb31-d4e350a89b61\"\r\n}" headers: cache-control: - no-cache @@ -1737,7 +1771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:19:04 GMT + - Sat, 16 Jan 2021 08:03:03 GMT expires: - '-1' pragma: @@ -1754,7 +1788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29984 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -1772,7 +1806,7 @@ interactions: ParameterSetName: - -g --vm-name --name --new --size-gb User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -1781,16 +1815,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1819,11 +1853,11 @@ interactions: cache-control: - no-cache content-length: - - '3711' + - '3717' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:19:04 GMT + - Sat, 16 Jan 2021 08:03:03 GMT expires: - '-1' pragma: @@ -1840,7 +1874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31963 + - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31945 status: code: 200 message: OK @@ -1858,7 +1892,7 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1867,16 +1901,16 @@ interactions: \ \"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\": \"1d09119d-a68c-4de4-8ee6-36a4c86c34e3\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e278e712-c0e4-4eac-87d3-2b4940448b90\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\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_disk1_24f52c036f4b42ef833f7475b3ee52e0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"mydisk1\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n @@ -1907,41 +1941,41 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T07:18:24+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0\",\r\n + \ \"time\": \"2021-01-16T08:02:47+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:15:34.5355202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.0454037+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"mydisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2020-12-18T07:17:11.1774475+00:00\"\r\n }\r\n ]\r\n + \"2021-01-16T08:01:25.6072969+00:00\"\r\n }\r\n ]\r\n \ },\r\n {\r\n \"name\": \"mydisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T07:17:50.8655455+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T08:01:59.1070071+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": \"mydisk3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2020-12-18T07:18:30.491032+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\": \"2020-12-18T07:18:35.3816966+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}" + \"2021-01-16T08:02:32.8569376+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-01-16T08:02:37.356923+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: - - '6051' + - '6060' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 07:19:06 GMT + - Sat, 16 Jan 2021 08:03:04 GMT expires: - '-1' pragma: @@ -1958,7 +1992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31962 + - Microsoft.Compute/LowCostGet3Min;3956,Microsoft.Compute/LowCostGet30Min;31944 status: code: 200 message: OK @@ -1976,15 +2010,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T07%3A14%3A46.9480676Z''\"","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-01-16T07%3A58%3A52.3813542Z''\"","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 @@ -1993,7 +2027,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:07 GMT + - Sat, 16 Jan 2021 08:03:04 GMT expires: - '-1' pragma: @@ -2025,15 +2059,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T17:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T17: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-01-16T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T17:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -2042,7 +2076,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:10 GMT + - Sat, 16 Jan 2021 08:03:04 GMT expires: - '-1' pragma: @@ -2078,24 +2112,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[]}' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","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;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk/protectableItems/vm;iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk","name":"iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg/providers/Microsoft.Compute/virtualMachines/clitest-vmkdppk","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmkdppk","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '36576' content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:11 GMT + - Sat, 16 Jan 2021 08:03:05 GMT expires: - '-1' pragma: @@ -2128,48 +2162,53 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","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;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk/protectableItems/vm;iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk","name":"iaasvmcontainerv2;clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg;clitest-vmkdppk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg/providers/Microsoft.Compute/virtualMachines/clitest-vmkdppk","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgdxdtaoxt7tbsiuq3flipj6fpo7duzc5smqj25c3btdzg2lpqifoj4dzzkhrj5h6bg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmkdppk","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '36576' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:14 GMT + - Sat, 16 Jan 2021 08:03: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/operationResults/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + 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", "extendedProperties": + {"diskExclusionProperties": {"diskLunList": [0, 1], "isInclusionList": true}}}}' headers: Accept: - application/json @@ -2179,37 +2218,43 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '657' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + 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=2020-10-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/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 07:19:16 GMT + - Sat, 16 Jan 2021 08:03: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/operationResults/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + - 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/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-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-ms-ratelimit-remaining-subscription-writes: + - '1196' x-powered-by: - ASP.NET status: @@ -2229,39 +2274,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:17 GMT + - Sat, 16 Jan 2021 08:03: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/operationResults/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2276,39 +2327,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:19 GMT + - Sat, 16 Jan 2021 08:03:08 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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: - - '147' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2323,39 +2380,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:20 GMT + - Sat, 16 Jan 2021 08:03: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/operationResults/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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: - - '146' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2370,39 +2433,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:22 GMT + - Sat, 16 Jan 2021 08:03: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/operationResults/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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: - - '145' + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2417,39 +2486,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:23 GMT + - Sat, 16 Jan 2021 08:03:12 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-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: - - '144' + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2464,35 +2539,45 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/d5070bd1-5029-47f8-8860-4bdce1c9152c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:25 GMT + - Sat, 16 Jan 2021 08:03: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: - - '143' + - '144' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2507,24 +2592,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-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/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"}}]}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1271' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:26 GMT + - Sat, 16 Jan 2021 08:03:15 GMT expires: - '-1' pragma: @@ -2540,17 +2625,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' 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", "extendedProperties": - {"diskExclusionProperties": {"diskLunList": [0, 1], "isInclusionList": true}}}}' + body: null headers: Accept: - application/json @@ -2560,48 +2642,48 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '657' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:19:29 GMT + - Sat, 16 Jan 2021 08:03: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2616,15 +2698,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2633,7 +2715,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:30 GMT + - Sat, 16 Jan 2021 08:03:17 GMT expires: - '-1' pragma: @@ -2649,7 +2731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -2669,15 +2751,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2686,7 +2768,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:31 GMT + - Sat, 16 Jan 2021 08:03:19 GMT expires: - '-1' pragma: @@ -2702,7 +2784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '140' x-powered-by: - ASP.NET status: @@ -2722,15 +2804,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2739,7 +2821,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:33 GMT + - Sat, 16 Jan 2021 08:03:20 GMT expires: - '-1' pragma: @@ -2755,7 +2837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '139' x-powered-by: - ASP.NET status: @@ -2775,15 +2857,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2792,7 +2874,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:34 GMT + - Sat, 16 Jan 2021 08:03:21 GMT expires: - '-1' pragma: @@ -2808,7 +2890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '138' x-powered-by: - ASP.NET status: @@ -2828,15 +2910,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2845,7 +2927,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:36 GMT + - Sat, 16 Jan 2021 08:03:22 GMT expires: - '-1' pragma: @@ -2861,7 +2943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '137' x-powered-by: - ASP.NET status: @@ -2881,15 +2963,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2898,7 +2980,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:37 GMT + - Sat, 16 Jan 2021 08:03:23 GMT expires: - '-1' pragma: @@ -2914,7 +2996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '136' x-powered-by: - ASP.NET status: @@ -2934,15 +3016,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2951,7 +3033,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:39 GMT + - Sat, 16 Jan 2021 08:03:24 GMT expires: - '-1' pragma: @@ -2967,7 +3049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '135' x-powered-by: - ASP.NET status: @@ -2987,15 +3069,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3004,7 +3086,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:40 GMT + - Sat, 16 Jan 2021 08:03:26 GMT expires: - '-1' pragma: @@ -3020,7 +3102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '134' x-powered-by: - ASP.NET status: @@ -3040,15 +3122,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3057,7 +3139,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:42 GMT + - Sat, 16 Jan 2021 08:03:27 GMT expires: - '-1' pragma: @@ -3073,7 +3155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '133' x-powered-by: - ASP.NET status: @@ -3093,15 +3175,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3110,7 +3192,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:43 GMT + - Sat, 16 Jan 2021 08:03:28 GMT expires: - '-1' pragma: @@ -3126,7 +3208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '132' x-powered-by: - ASP.NET status: @@ -3146,15 +3228,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3163,7 +3245,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:45 GMT + - Sat, 16 Jan 2021 08:03:29 GMT expires: - '-1' pragma: @@ -3179,7 +3261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '131' x-powered-by: - ASP.NET status: @@ -3199,15 +3281,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3216,7 +3298,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:46 GMT + - Sat, 16 Jan 2021 08:03:30 GMT expires: - '-1' pragma: @@ -3232,7 +3314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '130' x-powered-by: - ASP.NET status: @@ -3252,15 +3334,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3269,7 +3351,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:48 GMT + - Sat, 16 Jan 2021 08:03:31 GMT expires: - '-1' pragma: @@ -3285,7 +3367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '129' x-powered-by: - ASP.NET status: @@ -3305,15 +3387,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3322,7 +3404,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:49 GMT + - Sat, 16 Jan 2021 08:03:33 GMT expires: - '-1' pragma: @@ -3338,7 +3420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '128' x-powered-by: - ASP.NET status: @@ -3358,15 +3440,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3375,7 +3457,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:51 GMT + - Sat, 16 Jan 2021 08:03:35 GMT expires: - '-1' pragma: @@ -3391,7 +3473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '127' x-powered-by: - ASP.NET status: @@ -3411,15 +3493,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3428,7 +3510,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:52 GMT + - Sat, 16 Jan 2021 08:03:36 GMT expires: - '-1' pragma: @@ -3444,7 +3526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '126' x-powered-by: - ASP.NET status: @@ -3464,15 +3546,15 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"InProgress","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3481,7 +3563,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:54 GMT + - Sat, 16 Jan 2021 08:03:37 GMT expires: - '-1' pragma: @@ -3497,7 +3579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '125' x-powered-by: - ASP.NET status: @@ -3517,24 +3599,24 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71d1329e-6205-4cd4-98ca-197fd0f8a8ed?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","name":"71d1329e-6205-4cd4-98ca-197fd0f8a8ed","status":"Succeeded","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"2021-01-16T08:03:07.3350228Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1b0660b2-88f0-4e99-a152-8aa249ab6359"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:55 GMT + - Sat, 16 Jan 2021 08:03:38 GMT expires: - '-1' pragma: @@ -3550,7 +3632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '124' x-powered-by: - ASP.NET status: @@ -3570,30 +3652,32 @@ interactions: ParameterSetName: - -g -v --vm -p --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1b0660b2-88f0-4e99-a152-8aa249ab6359?api-version=2020-10-01 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1b0660b2-88f0-4e99-a152-8aa249ab6359","name":"1b0660b2-88f0-4e99-a152-8aa249ab6359","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.2858137S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T08:03:07.3350228Z","endTime":"2021-01-16T08:03:38.6208365Z","activityId":"42e62304-57d1-11eb-bf1d-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '968' content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:58 GMT + - Sat, 16 Jan 2021 08:03: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: @@ -3603,7 +3687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '149' x-powered-by: - ASP.NET status: @@ -3617,30 +3701,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --vm -p --disk-list-setting --diskslist + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"InProgress","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"0001-01-01T00:00:00"}' + 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":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[0,1],"isInclusionList":true}},"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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2057' content-type: - application/json date: - - Fri, 18 Dec 2020 07:19:59 GMT + - Sat, 16 Jan 2021 08:03:40 GMT expires: - '-1' pragma: @@ -3656,7 +3740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '146' x-powered-by: - ASP.NET status: @@ -3670,30 +3754,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/990afab8-6f98-4bbc-8e86-8e4379dbaf8d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","name":"990afab8-6f98-4bbc-8e86-8e4379dbaf8d","status":"Succeeded","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"2020-12-18T07:19:29.2534594Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ed37d46a-7209-4e77-afb3-59e3ab4008db"}}' + 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":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[0,1],"isInclusionList":true}},"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"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '2057' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:01 GMT + - Sat, 16 Jan 2021 08:03:40 GMT expires: - '-1' pragma: @@ -3709,67 +3793,68 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '146' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + 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", "extendedProperties": + {"diskExclusionProperties": {"diskLunList": [], "isInclusionList": true}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection update-for-vm Connection: - keep-alive + Content-Length: + - '653' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --vm -p --disk-list-setting --diskslist + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ed37d46a-7209-4e77-afb3-59e3ab4008db?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ed37d46a-7209-4e77-afb3-59e3ab4008db","name":"ed37d46a-7209-4e77-afb3-59e3ab4008db","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.7893727S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T07:19:29.2534594Z","endTime":"2020-12-18T07:20:00.0428321Z","activityId":"4f49cd59-4101-11eb-8120-c03eba45757e"}}' + 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/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 cache-control: - no-cache content-length: - - '968' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 07:20:03 GMT + - Sat, 16 Jan 2021 08:03: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-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' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3778,30 +3863,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-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","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":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[0,1],"isInclusionList":true}},"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"}}]}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2062' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:04 GMT + - Sat, 16 Jan 2021 08:03:41 GMT expires: - '-1' pragma: @@ -3837,24 +3922,24 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-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","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":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[0,1],"isInclusionList":true}},"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"}}]}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2062' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:06 GMT + - Sat, 16 Jan 2021 08:03:42 GMT expires: - '-1' pragma: @@ -3870,17 +3955,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' 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", "extendedProperties": - {"diskExclusionProperties": {"diskLunList": [], "isInclusionList": true}}}}' + body: null headers: Accept: - application/json @@ -3890,48 +3972,48 @@ interactions: - backup protection update-for-vm Connection: - keep-alive - Content-Length: - - '653' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:20:08 GMT + - Sat, 16 Jan 2021 08:03: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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: - - '1196' + 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: @@ -3946,15 +4028,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3963,7 +4045,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:10 GMT + - Sat, 16 Jan 2021 08:03:45 GMT expires: - '-1' pragma: @@ -3979,7 +4061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -3999,15 +4081,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4016,7 +4098,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:12 GMT + - Sat, 16 Jan 2021 08:03:46 GMT expires: - '-1' pragma: @@ -4032,7 +4114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -4052,15 +4134,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4069,7 +4151,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:13 GMT + - Sat, 16 Jan 2021 08:03:47 GMT expires: - '-1' pragma: @@ -4085,7 +4167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -4105,15 +4187,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4122,7 +4204,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:15 GMT + - Sat, 16 Jan 2021 08:03:48 GMT expires: - '-1' pragma: @@ -4138,7 +4220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -4158,15 +4240,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4175,7 +4257,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:16 GMT + - Sat, 16 Jan 2021 08:03:49 GMT expires: - '-1' pragma: @@ -4191,7 +4273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '142' x-powered-by: - ASP.NET status: @@ -4211,15 +4293,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"InProgress","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"InProgress","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4228,7 +4310,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:18 GMT + - Sat, 16 Jan 2021 08:03:50 GMT expires: - '-1' pragma: @@ -4244,7 +4326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '141' x-powered-by: - ASP.NET status: @@ -4264,15 +4346,15 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd2d7234-836e-4e78-becc-e1af8b1f610f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8c83bc5e-a994-4069-8f9c-4077b25ecf1f?api-version=2020-10-01 response: body: - string: '{"id":"dd2d7234-836e-4e78-becc-e1af8b1f610f","name":"dd2d7234-836e-4e78-becc-e1af8b1f610f","status":"Succeeded","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"2020-12-18T07:20:09.1632141Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"75543e8c-4624-4c91-bd9f-283da0098547"}}' + string: '{"id":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","name":"8c83bc5e-a994-4069-8f9c-4077b25ecf1f","status":"Succeeded","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"2021-01-16T08:03:41.0569513Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c3be927c-b9f1-4abf-9a2e-94533a89a900"}}' headers: cache-control: - no-cache @@ -4281,7 +4363,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:19 GMT + - Sat, 16 Jan 2021 08:03:52 GMT expires: - '-1' pragma: @@ -4297,7 +4379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '140' x-powered-by: - ASP.NET status: @@ -4317,25 +4399,25 @@ interactions: ParameterSetName: - -g -v -c -i --exclude-all-data-disks User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/75543e8c-4624-4c91-bd9f-283da0098547?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c3be927c-b9f1-4abf-9a2e-94533a89a900?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75543e8c-4624-4c91-bd9f-283da0098547","name":"75543e8c-4624-4c91-bd9f-283da0098547","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.9384912S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T07:20:09.1632141Z","endTime":"2020-12-18T07:20:20.1017053Z","activityId":"73141b02-4101-11eb-931b-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c3be927c-b9f1-4abf-9a2e-94533a89a900","name":"c3be927c-b9f1-4abf-9a2e-94533a89a900","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.9217757S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T08:03:41.0569513Z","endTime":"2021-01-16T08:03:51.978727Z","activityId":"58051d2b-57d1-11eb-85fd-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '968' + - '967' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:21 GMT + - Sat, 16 Jan 2021 08:03:53 GMT expires: - '-1' pragma: @@ -4352,7 +4434,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4372,24 +4454,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true}},"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"}}]}' + 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":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true}},"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"}}]}' headers: cache-control: - no-cache content-length: - - '2059' + - '2054' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:22 GMT + - Sat, 16 Jan 2021 08:03:53 GMT expires: - '-1' pragma: @@ -4405,7 +4487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -4432,28 +4514,28 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2019-06-15 + - 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/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 07:20:23 GMT + - Sat, 16 Jan 2021 08:03: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/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2019-06-15 + - 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/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -4461,7 +4543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -4481,24 +4563,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:24 GMT + - Sat, 16 Jan 2021 08:03:55 GMT expires: - '-1' pragma: @@ -4534,24 +4616,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:26 GMT + - Sat, 16 Jan 2021 08:03:56 GMT expires: - '-1' pragma: @@ -4587,24 +4669,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:27 GMT + - Sat, 16 Jan 2021 08:03:57 GMT expires: - '-1' pragma: @@ -4640,24 +4722,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:29 GMT + - Sat, 16 Jan 2021 08:03:58 GMT expires: - '-1' pragma: @@ -4693,24 +4775,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:31 GMT + - Sat, 16 Jan 2021 08:03:59 GMT expires: - '-1' pragma: @@ -4746,24 +4828,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:32 GMT + - Sat, 16 Jan 2021 08:04:00 GMT expires: - '-1' pragma: @@ -4799,24 +4881,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"InProgress","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:34 GMT + - Sat, 16 Jan 2021 08:04:02 GMT expires: - '-1' pragma: @@ -4852,24 +4934,24 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","name":"f1bbc2a6-dfdb-4295-bd8f-0a118cbecbcb","status":"Succeeded","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"2020-12-18T07:20:24.3958382Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a6fde026-91ae-463a-84fb-5afa4032b830"}}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:35 GMT + - Sat, 16 Jan 2021 08:04:03 GMT expires: - '-1' pragma: @@ -4905,32 +4987,30 @@ interactions: ParameterSetName: - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a6fde026-91ae-463a-84fb-5afa4032b830?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a6fde026-91ae-463a-84fb-5afa4032b830","name":"a6fde026-91ae-463a-84fb-5afa4032b830","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.9086575S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T07:20:24.3958382Z","endTime":"2020-12-18T07:20:35.3044957Z","activityId":"7d7b1aa2-4101-11eb-aef3-c03eba45757e"}}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:37 GMT + - Sat, 16 Jan 2021 08:04: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: @@ -4940,7 +5020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -4954,30 +5034,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-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","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":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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"}}]}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"InProgress","startTime":"2021-01-16T08:03:54.411131Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2061' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:37 GMT + - Sat, 16 Jan 2021 08:04:06 GMT expires: - '-1' pragma: @@ -4993,7 +5073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -5007,30 +5087,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection update-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/722dbf29-7367-466d-9c81-659c19bec9ec?api-version=2020-10-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","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":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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"}}]}' + string: '{"id":"722dbf29-7367-466d-9c81-659c19bec9ec","name":"722dbf29-7367-466d-9c81-659c19bec9ec","status":"Succeeded","startTime":"2021-01-16T08:03:54.411131Z","endTime":"2021-01-16T08:03:54.411131Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"75bffde8-63e7-4d02-9391-b62fb462d889"}}' headers: cache-control: - no-cache content-length: - - '2061' + - '302' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:40 GMT + - Sat, 16 Jan 2021 08:04:07 GMT expires: - '-1' pragma: @@ -5046,66 +5126,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection update-for-vm Connection: - keep-alive - Content-Length: - - '113' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v -c -i --disk-list-setting --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75bffde8-63e7-4d02-9391-b62fb462d889?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75bffde8-63e7-4d02-9391-b62fb462d889","name":"75bffde8-63e7-4d02-9391-b62fb462d889","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12.5626267S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T08:03:54.411131Z","endTime":"2021-01-16T08:04:06.9737577Z","activityId":"5ff40879-57d1-11eb-b46e-c8f750f92764"}}' 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/434f73a2-16e0-427a-8ddd-f36ea1eed477?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '967' + content-type: + - application/json date: - - Fri, 18 Dec 2020 07:20:44 GMT + - Sat, 16 Jan 2021 08:04: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/434f73a2-16e0-427a-8ddd-f36ea1eed477?api-version=2016-12-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-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: @@ -5114,30 +5195,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/434f73a2-16e0-427a-8ddd-f36ea1eed477?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"434f73a2-16e0-427a-8ddd-f36ea1eed477","name":"434f73a2-16e0-427a-8ddd-f36ea1eed477","status":"Succeeded","startTime":"2020-12-18T07:20:45.0725911Z","endTime":"2020-12-18T07:20:45.0725911Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d"}}' + 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":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '2056' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:46 GMT + - Sat, 16 Jan 2021 08:04:07 GMT expires: - '-1' pragma: @@ -5153,7 +5234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -5173,34 +5254,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.2390974S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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"}}]}' headers: cache-control: - no-cache content-length: - - '1156' + - '2056' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:49 GMT + - Sat, 16 Jan 2021 08:04: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: @@ -5210,69 +5287,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-15T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.4644554S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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/8f9e20e6-aed9-4f44-982f-e21f956dd7c4?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1156' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 07:20:51 GMT + - Sat, 16 Jan 2021 08:04:08 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/8f9e20e6-aed9-4f44-982f-e21f956dd7c4?api-version=2020-10-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' + 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: @@ -5281,40 +5355,89 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8f9e20e6-aed9-4f44-982f-e21f956dd7c4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.2400539S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"8f9e20e6-aed9-4f44-982f-e21f956dd7c4","name":"8f9e20e6-aed9-4f44-982f-e21f956dd7c4","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 07:20:51 GMT + - Sat, 16 Jan 2021 08:04: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: + - '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: + - -g -v -c -i --backup-management-type --workload-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f9e20e6-aed9-4f44-982f-e21f956dd7c4?api-version=2020-10-01 + response: + body: + string: '{"id":"8f9e20e6-aed9-4f44-982f-e21f956dd7c4","name":"8f9e20e6-aed9-4f44-982f-e21f956dd7c4","status":"Succeeded","startTime":"2021-01-16T08:04:09.5159351Z","endTime":"2021-01-16T08:04:09.5159351Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6b86bffd-0065-4775-91a9-2cdeca2c64e5"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: @@ -5330,6 +5453,63 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --backup-management-type --workload-type --retain-until --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.7937604S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08: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: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK - request: body: null headers: @@ -5344,27 +5524,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38.1033412S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.9030705S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 07:21:23 GMT + - Sat, 16 Jan 2021 08:04:12 GMT expires: - '-1' pragma: @@ -5381,7 +5561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -5401,27 +5581,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.834306S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.3577342S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 07:21:53 GMT + - Sat, 16 Jan 2021 08:04:13 GMT expires: - '-1' pragma: @@ -5438,7 +5618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -5458,18 +5638,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.63318S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.8322748S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5478,7 +5658,64 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:22:24 GMT + - Sat, 16 Jan 2021 08:04: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.3054854S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05:13 GMT expires: - '-1' pragma: @@ -5515,18 +5752,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.4765833S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.7688274S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5535,7 +5772,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:22:55 GMT + - Sat, 16 Jan 2021 08:05:43 GMT expires: - '-1' pragma: @@ -5572,27 +5809,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M42.3913169S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.2780602S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:23:27 GMT + - Sat, 16 Jan 2021 08:06:14 GMT expires: - '-1' pragma: @@ -5629,18 +5866,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M14.2829292S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.7071566S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5649,7 +5886,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:23:58 GMT + - Sat, 16 Jan 2021 08:06:45 GMT expires: - '-1' pragma: @@ -5686,27 +5923,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M45.1705671S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.4535842S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:24:31 GMT + - Sat, 16 Jan 2021 08:07:16 GMT expires: - '-1' pragma: @@ -5743,18 +5980,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M16.6572106S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.8907696S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5763,7 +6000,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:25:02 GMT + - Sat, 16 Jan 2021 08:07:46 GMT expires: - '-1' pragma: @@ -5800,27 +6037,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M47.4807692S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M7.3674182S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:25:32 GMT + - Sat, 16 Jan 2021 08:08:17 GMT expires: - '-1' pragma: @@ -5857,18 +6094,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M19.7888053S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.8480377S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5877,7 +6114,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:26:04 GMT + - Sat, 16 Jan 2021 08:08:47 GMT expires: - '-1' pragma: @@ -5914,27 +6151,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M50.6067465S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M8.3170089S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:26:36 GMT + - Sat, 16 Jan 2021 08:09:17 GMT expires: - '-1' pragma: @@ -5971,18 +6208,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M22.4600715S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.8320637S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5991,7 +6228,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:27:07 GMT + - Sat, 16 Jan 2021 08:09:47 GMT expires: - '-1' pragma: @@ -6028,27 +6265,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M53.2440845S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M9.3215118S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:27:38 GMT + - Sat, 16 Jan 2021 08:10:18 GMT expires: - '-1' pragma: @@ -6085,18 +6322,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M25.2780161S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M40.1621195S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6105,7 +6342,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:28:10 GMT + - Sat, 16 Jan 2021 08:10:49 GMT expires: - '-1' pragma: @@ -6142,27 +6379,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M56.2315209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M10.8098423S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:28:41 GMT + - Sat, 16 Jan 2021 08:11:20 GMT expires: - '-1' pragma: @@ -6199,27 +6436,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M28.053401S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M41.4271673S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:29:13 GMT + - Sat, 16 Jan 2021 08:11:51 GMT expires: - '-1' pragma: @@ -6256,27 +6493,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M0.3280261S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M11.9113447S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:29:45 GMT + - Sat, 16 Jan 2021 08:12:21 GMT expires: - '-1' pragma: @@ -6313,18 +6550,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M31.1011306S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.7071037S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6333,7 +6570,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:30:16 GMT + - Sat, 16 Jan 2021 08:12:53 GMT expires: - '-1' pragma: @@ -6370,27 +6607,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M1.87809S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M14.1413616S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:30:46 GMT + - Sat, 16 Jan 2021 08:13:23 GMT expires: - '-1' pragma: @@ -6427,27 +6664,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M32.6506904S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M44.6442016S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:31:18 GMT + - Sat, 16 Jan 2021 08:13:53 GMT expires: - '-1' pragma: @@ -6484,18 +6721,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M4.5870183S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M15.150347S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6504,7 +6741,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:31:49 GMT + - Sat, 16 Jan 2021 08:14:24 GMT expires: - '-1' pragma: @@ -6541,18 +6778,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M35.5864315S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M45.6475367S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6561,7 +6798,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:32:21 GMT + - Sat, 16 Jan 2021 08:14:55 GMT expires: - '-1' pragma: @@ -6598,27 +6835,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M7.7158162S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M16.2623942S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:32:52 GMT + - Sat, 16 Jan 2021 08:15:25 GMT expires: - '-1' pragma: @@ -6655,27 +6892,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M39.5412112S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M46.713321S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:33:24 GMT + - Sat, 16 Jan 2021 08:15:56 GMT expires: - '-1' pragma: @@ -6712,18 +6949,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M11.5367917S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M17.1921606S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6732,7 +6969,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:33:56 GMT + - Sat, 16 Jan 2021 08:16:26 GMT expires: - '-1' pragma: @@ -6769,18 +7006,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M42.3702808S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M47.7134302S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6789,7 +7026,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:34:26 GMT + - Sat, 16 Jan 2021 08:16:56 GMT expires: - '-1' pragma: @@ -6826,18 +7063,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M14.3995306S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M18.1898684S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6846,7 +7083,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:34:59 GMT + - Sat, 16 Jan 2021 08:17:27 GMT expires: - '-1' pragma: @@ -6883,18 +7120,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M45.2341961S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M49.0900301S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6903,7 +7140,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:35:29 GMT + - Sat, 16 Jan 2021 08:17:58 GMT expires: - '-1' pragma: @@ -6940,18 +7177,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M16.9301715S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M19.8652465S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6960,7 +7197,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:36:02 GMT + - Sat, 16 Jan 2021 08:18:29 GMT expires: - '-1' pragma: @@ -6997,18 +7234,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M47.8093559S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M50.3625974S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7017,7 +7254,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:36:32 GMT + - Sat, 16 Jan 2021 08:19:00 GMT expires: - '-1' pragma: @@ -7054,18 +7291,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M18.6864624S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M21.0817813S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7074,7 +7311,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:37:03 GMT + - Sat, 16 Jan 2021 08:19:30 GMT expires: - '-1' pragma: @@ -7111,27 +7348,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M49.6803308S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M51.556901S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:37:34 GMT + - Sat, 16 Jan 2021 08:20:01 GMT expires: - '-1' pragma: @@ -7168,18 +7405,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M21.3879453S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M22.0147206S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7188,7 +7425,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:38:06 GMT + - Sat, 16 Jan 2021 08:20:31 GMT expires: - '-1' pragma: @@ -7225,18 +7462,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M52.3600061S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M53.2068265S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7245,7 +7482,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:38:38 GMT + - Sat, 16 Jan 2021 08:21:02 GMT expires: - '-1' pragma: @@ -7282,27 +7519,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M24.0943912S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M23.698708S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:39:08 GMT + - Sat, 16 Jan 2021 08:21:33 GMT expires: - '-1' pragma: @@ -7339,18 +7576,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M54.9267855S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M54.2488793S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7359,7 +7596,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:39:40 GMT + - Sat, 16 Jan 2021 08:22:03 GMT expires: - '-1' pragma: @@ -7396,18 +7633,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M25.7534219S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M24.7393009S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7416,7 +7653,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:40:10 GMT + - Sat, 16 Jan 2021 08:22:33 GMT expires: - '-1' pragma: @@ -7453,18 +7690,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M57.9007184S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M55.4812852S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7473,7 +7710,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:40:43 GMT + - Sat, 16 Jan 2021 08:23:04 GMT expires: - '-1' pragma: @@ -7510,18 +7747,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M28.7804031S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M26.0324066S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7530,7 +7767,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:41:13 GMT + - Sat, 16 Jan 2021 08:23:35 GMT expires: - '-1' pragma: @@ -7567,27 +7804,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M0.7271308S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M56.5037371S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:41:45 GMT + - Sat, 16 Jan 2021 08:24:05 GMT expires: - '-1' pragma: @@ -7624,27 +7861,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M32.724277S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M27.0208291S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:42:18 GMT + - Sat, 16 Jan 2021 08:24:36 GMT expires: - '-1' pragma: @@ -7681,27 +7918,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M3.5238344S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M57.6169495S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:42:48 GMT + - Sat, 16 Jan 2021 08:25:06 GMT expires: - '-1' pragma: @@ -7738,18 +7975,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M35.4831206S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M28.1529416S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7758,7 +7995,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:43:20 GMT + - Sat, 16 Jan 2021 08:25:37 GMT expires: - '-1' pragma: @@ -7795,27 +8032,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M7.5432268S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M58.6454849S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:43:52 GMT + - Sat, 16 Jan 2021 08:26:07 GMT expires: - '-1' pragma: @@ -7852,18 +8089,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M38.3828501S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M29.1478261S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7872,7 +8109,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:44:23 GMT + - Sat, 16 Jan 2021 08:26:38 GMT expires: - '-1' pragma: @@ -7909,18 +8146,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M10.2510089S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M59.6650565S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7929,7 +8166,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:44:55 GMT + - Sat, 16 Jan 2021 08:27:09 GMT expires: - '-1' pragma: @@ -7966,18 +8203,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M41.0993685S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M30.1679749S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7986,7 +8223,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:45:26 GMT + - Sat, 16 Jan 2021 08:27:39 GMT expires: - '-1' pragma: @@ -8023,27 +8260,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M12.0157805S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M0.6357621S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:45:57 GMT + - Sat, 16 Jan 2021 08:28:10 GMT expires: - '-1' pragma: @@ -8080,18 +8317,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M42.9213661S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M31.1963323S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8100,7 +8337,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:46:27 GMT + - Sat, 16 Jan 2021 08:28:40 GMT expires: - '-1' pragma: @@ -8137,27 +8374,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M14.8450411S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M1.7542931S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:47:00 GMT + - Sat, 16 Jan 2021 08:29:11 GMT expires: - '-1' pragma: @@ -8194,18 +8431,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M45.7829968S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M32.4725436S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8214,7 +8451,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:47:30 GMT + - Sat, 16 Jan 2021 08:29:41 GMT expires: - '-1' pragma: @@ -8251,27 +8488,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M17.7023199S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M3.0033441S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:48:02 GMT + - Sat, 16 Jan 2021 08:30:12 GMT expires: - '-1' pragma: @@ -8308,18 +8545,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M49.7130764S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M33.5298009S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8328,7 +8565,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:48:34 GMT + - Sat, 16 Jan 2021 08:30:43 GMT expires: - '-1' pragma: @@ -8365,27 +8602,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M20.5956269S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M4.0832726S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:49:05 GMT + - Sat, 16 Jan 2021 08:31:13 GMT expires: - '-1' pragma: @@ -8422,27 +8659,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M52.66696S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M34.5840678S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:49:37 GMT + - Sat, 16 Jan 2021 08:31:44 GMT expires: - '-1' pragma: @@ -8479,27 +8716,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M24.7350665S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M5.0513996S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:50:09 GMT + - Sat, 16 Jan 2021 08:32:14 GMT expires: - '-1' pragma: @@ -8536,18 +8773,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M55.7116977S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M35.7800643S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8556,7 +8793,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:50:40 GMT + - Sat, 16 Jan 2021 08:32:45 GMT expires: - '-1' pragma: @@ -8593,27 +8830,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M27.6450786S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M6.2435615S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:51:13 GMT + - Sat, 16 Jan 2021 08:33:15 GMT expires: - '-1' pragma: @@ -8650,18 +8887,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M58.4975348S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M36.7036961S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8670,7 +8907,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:51:43 GMT + - Sat, 16 Jan 2021 08:33:46 GMT expires: - '-1' pragma: @@ -8707,18 +8944,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M29.420444S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M7.1916218S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8727,7 +8964,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:52:14 GMT + - Sat, 16 Jan 2021 08:34:16 GMT expires: - '-1' pragma: @@ -8764,18 +9001,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M1.1892495S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M37.903903S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8784,7 +9021,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:52:46 GMT + - Sat, 16 Jan 2021 08:34:47 GMT expires: - '-1' pragma: @@ -8821,18 +9058,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M33.129546S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M8.3569746S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8841,7 +9078,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:53:18 GMT + - Sat, 16 Jan 2021 08:35:18 GMT expires: - '-1' pragma: @@ -8878,27 +9115,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M4.979666S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M38.9157017S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:53:49 GMT + - Sat, 16 Jan 2021 08:35:48 GMT expires: - '-1' pragma: @@ -8935,27 +9172,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M35.9890105S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M9.4263205S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 07:54:21 GMT + - Sat, 16 Jan 2021 08:36:18 GMT expires: - '-1' pragma: @@ -8992,27 +9229,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M6.9144025S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M39.9038587S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:54:51 GMT + - Sat, 16 Jan 2021 08:36:49 GMT expires: - '-1' pragma: @@ -9049,18 +9286,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M37.6626429S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M10.3810019S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9069,7 +9306,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:55:23 GMT + - Sat, 16 Jan 2021 08:37:19 GMT expires: - '-1' pragma: @@ -9106,27 +9343,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M9.4939868S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M40.9036606S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:55:54 GMT + - Sat, 16 Jan 2021 08:37:50 GMT expires: - '-1' pragma: @@ -9163,18 +9400,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M40.4560375S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M11.6928208S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9183,7 +9420,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:56:25 GMT + - Sat, 16 Jan 2021 08:38:20 GMT expires: - '-1' pragma: @@ -9220,18 +9457,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M12.4642667S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M42.1931756S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9240,7 +9477,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:56:57 GMT + - Sat, 16 Jan 2021 08:38:51 GMT expires: - '-1' pragma: @@ -9277,18 +9514,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M43.2965068S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M12.6711408S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9297,7 +9534,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:57:28 GMT + - Sat, 16 Jan 2021 08:39:21 GMT expires: - '-1' pragma: @@ -9334,27 +9571,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M15.262567S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M43.4358631S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 07:58:00 GMT + - Sat, 16 Jan 2021 08:39:53 GMT expires: - '-1' pragma: @@ -9391,18 +9628,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M47.1497228S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M14.2149886S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9411,7 +9648,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:58:32 GMT + - Sat, 16 Jan 2021 08:40:23 GMT expires: - '-1' pragma: @@ -9448,18 +9685,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M19.1498405S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M44.7290022S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9468,7 +9705,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:59:04 GMT + - Sat, 16 Jan 2021 08:40:54 GMT expires: - '-1' pragma: @@ -9505,18 +9742,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M50.096744S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M15.281501S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9525,7 +9762,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 07:59:34 GMT + - Sat, 16 Jan 2021 08:41:24 GMT expires: - '-1' pragma: @@ -9562,18 +9799,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M21.9895407S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M45.8473901S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9582,7 +9819,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:00:07 GMT + - Sat, 16 Jan 2021 08:41:56 GMT expires: - '-1' pragma: @@ -9619,18 +9856,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M52.7350211S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M17.1747607S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9639,7 +9876,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:00:37 GMT + - Sat, 16 Jan 2021 08:42:27 GMT expires: - '-1' pragma: @@ -9676,18 +9913,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M23.6329068S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M47.7207304S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9696,7 +9933,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:01:08 GMT + - Sat, 16 Jan 2021 08:42:56 GMT expires: - '-1' pragma: @@ -9733,18 +9970,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M54.4945487S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M18.6197697S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9753,7 +9990,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:01:39 GMT + - Sat, 16 Jan 2021 08:43:28 GMT expires: - '-1' pragma: @@ -9790,18 +10027,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M27.9073636S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M49.0963756S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9810,7 +10047,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:02:13 GMT + - Sat, 16 Jan 2021 08:43:59 GMT expires: - '-1' pragma: @@ -9847,18 +10084,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M59.8214686S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M19.7363076S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9867,7 +10104,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:02:44 GMT + - Sat, 16 Jan 2021 08:44:29 GMT expires: - '-1' pragma: @@ -9904,18 +10141,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M31.4357428S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M50.2623284S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9924,7 +10161,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:03:15 GMT + - Sat, 16 Jan 2021 08:44:59 GMT expires: - '-1' pragma: @@ -9961,27 +10198,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M2.1599665S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M20.7442259S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:03:47 GMT + - Sat, 16 Jan 2021 08:45:30 GMT expires: - '-1' pragma: @@ -10018,18 +10255,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M32.9251821S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M51.2089827S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10038,7 +10275,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:04:17 GMT + - Sat, 16 Jan 2021 08:46:00 GMT expires: - '-1' pragma: @@ -10075,27 +10312,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M4.8052426S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M21.7480858S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:04:49 GMT + - Sat, 16 Jan 2021 08:46:31 GMT expires: - '-1' pragma: @@ -10132,18 +10369,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M35.5933652S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M52.2408403S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10152,7 +10389,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:05:20 GMT + - Sat, 16 Jan 2021 08:47:02 GMT expires: - '-1' pragma: @@ -10189,27 +10426,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M7.360795S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M22.7493153S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:05:52 GMT + - Sat, 16 Jan 2021 08:47:32 GMT expires: - '-1' pragma: @@ -10246,18 +10483,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M38.1785703S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M53.2337847S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10266,7 +10503,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:06:23 GMT + - Sat, 16 Jan 2021 08:48:02 GMT expires: - '-1' pragma: @@ -10303,27 +10540,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M8.911964S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M23.7013122S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:06:53 GMT + - Sat, 16 Jan 2021 08:48:33 GMT expires: - '-1' pragma: @@ -10360,18 +10597,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M39.7764718S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M54.2334943S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10380,7 +10617,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:07:24 GMT + - Sat, 16 Jan 2021 08:49:04 GMT expires: - '-1' pragma: @@ -10417,18 +10654,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M11.6230732S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M24.7640773S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10437,7 +10674,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:07:56 GMT + - Sat, 16 Jan 2021 08:49:34 GMT expires: - '-1' pragma: @@ -10474,18 +10711,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M43.5047295S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M55.5944979S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10494,7 +10731,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:08:28 GMT + - Sat, 16 Jan 2021 08:50:05 GMT expires: - '-1' pragma: @@ -10531,27 +10768,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M14.310732S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M26.0580187S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:08:59 GMT + - Sat, 16 Jan 2021 08:50:35 GMT expires: - '-1' pragma: @@ -10588,18 +10825,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M45.8446095S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M56.5751877S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10608,7 +10845,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:09:31 GMT + - Sat, 16 Jan 2021 08:51:06 GMT expires: - '-1' pragma: @@ -10645,18 +10882,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M16.5708546S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M27.7222473S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10665,7 +10902,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:10:01 GMT + - Sat, 16 Jan 2021 08:51:37 GMT expires: - '-1' pragma: @@ -10702,18 +10939,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M47.2769495S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M58.6019935S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10722,7 +10959,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:10:32 GMT + - Sat, 16 Jan 2021 08:52:07 GMT expires: - '-1' pragma: @@ -10759,18 +10996,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M19.1425627S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M30.0049018S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10779,7 +11016,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:11:04 GMT + - Sat, 16 Jan 2021 08:52:39 GMT expires: - '-1' pragma: @@ -10816,18 +11053,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M49.929909S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M1.1361648S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10836,7 +11073,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:11:34 GMT + - Sat, 16 Jan 2021 08:53:10 GMT expires: - '-1' pragma: @@ -10873,18 +11110,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M21.6912472S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M32.7338394S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10893,7 +11130,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:12:06 GMT + - Sat, 16 Jan 2021 08:53:42 GMT expires: - '-1' pragma: @@ -10930,18 +11167,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M52.417381S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M5.4288816S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10950,7 +11187,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:12:37 GMT + - Sat, 16 Jan 2021 08:54:15 GMT expires: - '-1' pragma: @@ -10987,18 +11224,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M24.3954709S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M36.5870911S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11007,7 +11244,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:13:09 GMT + - Sat, 16 Jan 2021 08:54:46 GMT expires: - '-1' pragma: @@ -11044,27 +11281,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M56.0244819S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M7.7509379S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 08:13:40 GMT + - Sat, 16 Jan 2021 08:55:16 GMT expires: - '-1' pragma: @@ -11101,18 +11338,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M26.8803174S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M39.2564942S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11121,7 +11358,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:14:11 GMT + - Sat, 16 Jan 2021 08:55:48 GMT expires: - '-1' pragma: @@ -11158,27 +11395,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M59.0255397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M10.77491S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 08:14:44 GMT + - Sat, 16 Jan 2021 08:56:20 GMT expires: - '-1' pragma: @@ -11215,18 +11452,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M30.0269507S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M42.1922503S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11235,7 +11472,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:15:15 GMT + - Sat, 16 Jan 2021 08:56:52 GMT expires: - '-1' pragma: @@ -11272,27 +11509,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M0.8209971S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M13.8667403S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:15:45 GMT + - Sat, 16 Jan 2021 08:57:22 GMT expires: - '-1' pragma: @@ -11329,18 +11566,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M31.7823571S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M45.2679607S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11349,7 +11586,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:16:16 GMT + - Sat, 16 Jan 2021 08:57:54 GMT expires: - '-1' pragma: @@ -11386,18 +11623,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M3.8268743S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M17.103867S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11406,7 +11643,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:16:49 GMT + - Sat, 16 Jan 2021 08:58:27 GMT expires: - '-1' pragma: @@ -11443,18 +11680,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M34.6366661S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M48.8222593S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11463,7 +11700,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:17:19 GMT + - Sat, 16 Jan 2021 08:58:58 GMT expires: - '-1' pragma: @@ -11500,27 +11737,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M6.6952252S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M21.0466306S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:17:51 GMT + - Sat, 16 Jan 2021 08:59:31 GMT expires: - '-1' pragma: @@ -11557,18 +11794,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M37.6388296S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M52.3618685S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11577,7 +11814,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:18:23 GMT + - Sat, 16 Jan 2021 09:00:02 GMT expires: - '-1' pragma: @@ -11614,27 +11851,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M8.5315365S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M24.3435457S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:18:53 GMT + - Sat, 16 Jan 2021 09:00:33 GMT expires: - '-1' pragma: @@ -11671,18 +11908,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M39.4004801S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M55.9728274S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11691,7 +11928,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:19:24 GMT + - Sat, 16 Jan 2021 09:01:05 GMT expires: - '-1' pragma: @@ -11728,18 +11965,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M11.5208881S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M27.1890373S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11748,7 +11985,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:19:57 GMT + - Sat, 16 Jan 2021 09:01:37 GMT expires: - '-1' pragma: @@ -11785,27 +12022,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M42.516581S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M58.1167429S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:20:27 GMT + - Sat, 16 Jan 2021 09:02:07 GMT expires: - '-1' pragma: @@ -11842,27 +12079,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14.5090513S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M28.6623718S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:20:59 GMT + - Sat, 16 Jan 2021 09:02:38 GMT expires: - '-1' pragma: @@ -11899,27 +12136,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H45.3863395S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M59.2015141S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:21:30 GMT + - Sat, 16 Jan 2021 09:03:08 GMT expires: - '-1' pragma: @@ -11956,27 +12193,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M16.1941189S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M29.6754994S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:22:01 GMT + - Sat, 16 Jan 2021 09:03:39 GMT expires: - '-1' pragma: @@ -12013,27 +12250,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M47.1170357S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H0.1960232S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 08:22:32 GMT + - Sat, 16 Jan 2021 09:04:09 GMT expires: - '-1' pragma: @@ -12070,27 +12307,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M19.1227344S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H30.7732965S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 08:23:04 GMT + - Sat, 16 Jan 2021 09:04:40 GMT expires: - '-1' pragma: @@ -12107,7 +12344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '28' x-powered-by: - ASP.NET status: @@ -12127,27 +12364,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M51.2111193S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M1.2323837S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T08:04:09.5159351Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 08:23:36 GMT + - Sat, 16 Jan 2021 09:05:10 GMT expires: - '-1' pragma: @@ -12164,7 +12401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '30' x-powered-by: - ASP.NET status: @@ -12184,27 +12421,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M21.9919986S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6b86bffd-0065-4775-91a9-2cdeca2c64e5","name":"6b86bffd-0065-4775-91a9-2cdeca2c64e5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M14.9548772S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM","Backup Size":"21442 MB","Backed-up + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1; + mydisk3","Excluded disk(s)":"mydisk2"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-16T08:04:09.5159351Z","endTime":"2021-01-16T09:05:24.4708123Z","activityId":"68e1ca1e-57d1-11eb-8884-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1351' content-type: - application/json date: - - Fri, 18 Dec 2020 08:24:06 GMT + - Sat, 16 Jan 2021 09:05:41 GMT expires: - '-1' pragma: @@ -12221,7 +12460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '29' x-powered-by: - ASP.NET status: @@ -12235,40 +12474,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M52.7906911S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1160' + - '2431' content-type: - application/json date: - - Fri, 18 Dec 2020 08:24:38 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12278,7 +12514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '149' x-powered-by: - ASP.NET status: @@ -12292,40 +12528,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M23.6230698S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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/13009053638324","name":"13009053638324","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T08:04:13.2158135Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4}}}]}' headers: cache-control: - no-cache content-length: - - '1160' + - '1276' content-type: - application/json date: - - Fri, 18 Dec 2020 08:25:08 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12335,7 +12567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '149' x-powered-by: - ASP.NET status: @@ -12349,40 +12581,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M54.5625573S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1160' + - '2431' content-type: - application/json date: - - Fri, 18 Dec 2020 08:25:39 GMT + - Sat, 16 Jan 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: @@ -12392,7 +12621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '149' x-powered-by: - ASP.NET status: @@ -12406,40 +12635,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M26.659001S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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: - - '1159' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 08:26:12 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12449,7 +12674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '149' x-powered-by: - ASP.NET status: @@ -12463,40 +12688,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M58.6219213S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1160' + - '2431' content-type: - application/json date: - - Fri, 18 Dec 2020 08:26:43 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12506,7 +12728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -12520,40 +12742,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M29.4555908S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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: - - '1160' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 08:27:14 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12563,7 +12781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '149' x-powered-by: - ASP.NET status: @@ -12577,40 +12795,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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/13009053638324?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M0.2342405S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"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/13009053638324","name":"13009053638324","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T08:04:13.2158135Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4,"includedDiskList":[{"lun":-1,"name":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]}}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1465' content-type: - application/json date: - - Fri, 18 Dec 2020 08:27:45 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12620,7 +12834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '149' x-powered-by: - ASP.NET status: @@ -12634,40 +12848,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M32.1924547S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-16T07%3A58%3A52.3813542Z''\"","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: - - '1160' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 08:28:17 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12676,10 +12886,6 @@ interactions: - 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 @@ -12691,55 +12897,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M3.9874626S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:28:48 GMT + - Sat, 16 Jan 2021 09:06: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 + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -12748,40 +12944,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M36.0696865S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-16T08:01:01.6338362Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-16T08:01:01.5557032Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '974' content-type: - application/json date: - - Fri, 18 Dec 2020 08:29:21 GMT + - Sat, 16 Jan 2021 09:06:18 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -12790,70 +12982,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "13009053638324", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", + "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": + false, "restoreDiskLunList": []}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '878' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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/recoveryPoints/13009053638324/restore?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M8.2003431S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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/27d0c776-e130-471a-a7dc-2b5913d15abc?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1159' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 08:29:53 GMT + - Sat, 16 Jan 2021 09:06: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/27d0c776-e130-471a-a7dc-2b5913d15abc?api-version=2020-10-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: - - '25' + 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: @@ -12862,40 +13051,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27d0c776-e130-471a-a7dc-2b5913d15abc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M39.1254006S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"27d0c776-e130-471a-a7dc-2b5913d15abc","name":"27d0c776-e130-471a-a7dc-2b5913d15abc","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1160' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:30:24 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12905,7 +13090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '149' x-powered-by: - ASP.NET status: @@ -12919,40 +13104,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27d0c776-e130-471a-a7dc-2b5913d15abc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M10.1024466S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"27d0c776-e130-471a-a7dc-2b5913d15abc","name":"27d0c776-e130-471a-a7dc-2b5913d15abc","status":"Succeeded","startTime":"2021-01-16T09:06:18.8608668Z","endTime":"2021-01-16T09:06:18.8608668Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7238f043-323e-43b0-9127-3a983c2f1ca7"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 08:30:55 GMT + - Sat, 16 Jan 2021 09:06: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: @@ -12962,7 +13143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '148' x-powered-by: - ASP.NET status: @@ -12976,33 +13157,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M40.9904965S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.7954313S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:31:25 GMT + - Sat, 16 Jan 2021 09:06:22 GMT expires: - '-1' pragma: @@ -13019,7 +13200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '149' x-powered-by: - ASP.NET status: @@ -13039,27 +13220,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M13.0491299S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.5935475S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:31:58 GMT + - Sat, 16 Jan 2021 09:06:22 GMT expires: - '-1' pragma: @@ -13076,7 +13257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -13096,27 +13277,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M43.9057762S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.0349331S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:32:28 GMT + - Sat, 16 Jan 2021 09:06:23 GMT expires: - '-1' pragma: @@ -13133,7 +13314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '148' x-powered-by: - ASP.NET status: @@ -13153,27 +13334,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M15.9441538S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.5074467S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1301' content-type: - application/json date: - - Fri, 18 Dec 2020 08:33:01 GMT + - Sat, 16 Jan 2021 09:06:53 GMT expires: - '-1' pragma: @@ -13190,7 +13371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '147' x-powered-by: - ASP.NET status: @@ -13210,27 +13391,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M48.0571165S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.9453506S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1302' content-type: - application/json date: - - Fri, 18 Dec 2020 08:33:32 GMT + - Sat, 16 Jan 2021 09:07:23 GMT expires: - '-1' pragma: @@ -13247,7 +13428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '146' x-powered-by: - ASP.NET status: @@ -13267,27 +13448,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M18.8070405S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.5499962S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1303' content-type: - application/json date: - - Fri, 18 Dec 2020 08:34:04 GMT + - Sat, 16 Jan 2021 09:07:54 GMT expires: - '-1' pragma: @@ -13304,7 +13485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '145' x-powered-by: - ASP.NET status: @@ -13324,27 +13505,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M49.6286396S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.9477149S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1393' content-type: - application/json date: - - Fri, 18 Dec 2020 08:34:34 GMT + - Sat, 16 Jan 2021 09:08:25 GMT expires: - '-1' pragma: @@ -13361,7 +13543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '144' x-powered-by: - ASP.NET status: @@ -13381,27 +13563,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M21.6720862S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.424001S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:06:18.8608668Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1393' content-type: - application/json date: - - Fri, 18 Dec 2020 08:35:07 GMT + - Sat, 16 Jan 2021 09:08:54 GMT expires: - '-1' pragma: @@ -13418,7 +13601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '143' x-powered-by: - ASP.NET status: @@ -13438,27 +13621,34 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M52.4755494S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.3058876S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Config Blob Name":"config-clitestvmgtwfs-7238f043-323e-43b0-9127-3a983c2f1ca7.json","Config + Blob Container Name":"clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1/config-clitestvmgtwfs-7238f043-323e-43b0-9127-3a983c2f1ca7.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1/azuredeploy7238f043-323e-43b0-9127-3a983c2f1ca7.json","Restored + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595","Backed-up + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-16T09:06:18.8608668Z","endTime":"2021-01-16T09:09:23.1667544Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '2140' content-type: - application/json date: - - Fri, 18 Dec 2020 08:35:37 GMT + - Sat, 16 Jan 2021 09:09:25 GMT expires: - '-1' pragma: @@ -13475,7 +13665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '142' x-powered-by: - ASP.NET status: @@ -13489,33 +13679,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup job show Connection: - keep-alive ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M24.5558799S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7238f043-323e-43b0-9127-3a983c2f1ca7","name":"7238f043-323e-43b0-9127-3a983c2f1ca7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.3058876S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Config Blob Name":"config-clitestvmgtwfs-7238f043-323e-43b0-9127-3a983c2f1ca7.json","Config + Blob Container Name":"clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1/config-clitestvmgtwfs-7238f043-323e-43b0-9127-3a983c2f1ca7.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-b445c33868004da3b14da9a6c856fdc1/azuredeploy7238f043-323e-43b0-9127-3a983c2f1ca7.json","Restored + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595","Backed-up + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-16T09:06:18.8608668Z","endTime":"2021-01-16T09:09:23.1667544Z","activityId":"14f43d6a-57da-11eb-b9b1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '2140' content-type: - application/json date: - - Fri, 18 Dec 2020 08:36:10 GMT + - Sat, 16 Jan 2021 09:09:57 GMT expires: - '-1' pragma: @@ -13532,7 +13729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '149' x-powered-by: - ASP.NET status: @@ -13546,40 +13743,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M55.6227549S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1161' + - '2583' content-type: - application/json date: - - Fri, 18 Dec 2020 08:36:40 GMT + - Sat, 16 Jan 2021 09:09: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: @@ -13589,7 +13783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '141' x-powered-by: - ASP.NET status: @@ -13603,40 +13797,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M26.4959638S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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: - - '1161' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 08:37:11 GMT + - Sat, 16 Jan 2021 09:09: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: @@ -13646,7 +13836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -13660,40 +13850,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M58.6885518S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1161' + - '2583' content-type: - application/json date: - - Fri, 18 Dec 2020 08:37:43 GMT + - Sat, 16 Jan 2021 09:09: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: @@ -13703,7 +13890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '146' x-powered-by: - ASP.NET status: @@ -13717,40 +13904,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M30.5710694S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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: - - '1161' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 08:38:15 GMT + - Sat, 16 Jan 2021 09: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: @@ -13760,7 +13943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '149' x-powered-by: - ASP.NET status: @@ -13774,40 +13957,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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/13009053638324?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M2.4450702S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"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/13009053638324","name":"13009053638324","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T08:04:13.2158135Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4,"includedDiskList":[{"lun":-1,"name":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]}}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1465' content-type: - application/json date: - - Fri, 18 Dec 2020 08:38:47 GMT + - Sat, 16 Jan 2021 09:10: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: @@ -13817,7 +13996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '149' x-powered-by: - ASP.NET status: @@ -13831,40 +14010,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M34.4915871S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-16T07%3A58%3A52.3813542Z''\"","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: - - '1161' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 08:39:19 GMT + - Sat, 16 Jan 2021 09:10: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: @@ -13873,10 +14048,6 @@ interactions: - 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 @@ -13888,55 +14059,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M5.3092212S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:39:50 GMT + - Sat, 16 Jan 2021 09:10: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: - - '26' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -13945,40 +14106,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M36.8438204S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-16T08:01:01.6338362Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-16T08:01:01.5557032Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '974' content-type: - application/json date: - - Fri, 18 Dec 2020 08:40:22 GMT + - Sat, 16 Jan 2021 09:10:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -13987,70 +14144,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "13009053638324", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", + "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": + false, "restoreDiskLunList": [0]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '879' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + 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/recoveryPoints/13009053638324/restore?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M8.8493398S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + 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/b8d8944d-462f-4d1a-93f7-706f8e05b0e2?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1160' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 08:40:53 GMT + - Sat, 16 Jan 2021 09:10: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/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/b8d8944d-462f-4d1a-93f7-706f8e05b0e2?api-version=2020-10-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: - - '33' + 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: @@ -14059,40 +14213,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b8d8944d-462f-4d1a-93f7-706f8e05b0e2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M39.7013273S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"b8d8944d-462f-4d1a-93f7-706f8e05b0e2","name":"b8d8944d-462f-4d1a-93f7-706f8e05b0e2","status":"Succeeded","startTime":"2021-01-16T09:10:03.5248278Z","endTime":"2021-01-16T09:10:03.5248278Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"20c27785-ccb6-49c0-b202-d17fbdbb1b08"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 08:41:24 GMT + - Sat, 16 Jan 2021 09:10: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: @@ -14102,7 +14252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '149' x-powered-by: - ASP.NET status: @@ -14116,33 +14266,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M11.5889444S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T07:20:45.0725911Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9793308S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:41:56 GMT + - Sat, 16 Jan 2021 09:10:05 GMT expires: - '-1' pragma: @@ -14159,7 +14309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -14179,29 +14329,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3b267e7e-1ab6-40c1-b9a2-5340adfb984d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3b267e7e-1ab6-40c1-b9a2-5340adfb984d","name":"3b267e7e-1ab6-40c1-b9a2-5340adfb984d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M15.078302S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM","Backup Size":"21442 MB","Backed-up - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1; - mydisk3","Excluded disk(s)":"mydisk2"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T07:20:45.0725911Z","endTime":"2020-12-18T08:42:00.1508931Z","activityId":"8731bd72-4101-11eb-bc9a-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.6093569S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1348' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:42:27 GMT + - Sat, 16 Jan 2021 09:10:05 GMT expires: - '-1' pragma: @@ -14218,7 +14366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '39' x-powered-by: - ASP.NET status: @@ -14232,37 +14380,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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","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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.0273728S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:42:59 GMT + - Sat, 16 Jan 2021 09:10: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: @@ -14272,7 +14423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '38' x-powered-by: - ASP.NET status: @@ -14286,36 +14437,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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/2261031460359374503","name":"2261031460359374503","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T07:20:49.1648903Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4}}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.513033S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1286' + - '1300' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:00 GMT + - Sat, 16 Jan 2021 09:10: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: @@ -14325,7 +14480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '37' x-powered-by: - ASP.NET status: @@ -14339,37 +14494,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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","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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.2439156S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '1302' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:02 GMT + - Sat, 16 Jan 2021 09:11: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: @@ -14379,7 +14537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '36' x-powered-by: - ASP.NET status: @@ -14393,36 +14551,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.6748904S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1303' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:04 GMT + - Sat, 16 Jan 2021 09:11: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: @@ -14432,7 +14594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '35' x-powered-by: - ASP.NET status: @@ -14446,37 +14608,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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","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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.2147905S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 + GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2436' + - '1393' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:06 GMT + - Sat, 16 Jan 2021 09:12: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: @@ -14486,7 +14652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '34' x-powered-by: - ASP.NET status: @@ -14500,36 +14666,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-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","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.6588837S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 + GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T09:10:03.5248278Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1394' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:08 GMT + - Sat, 16 Jan 2021 09:12: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: @@ -14539,7 +14710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '33' x-powered-by: - ASP.NET status: @@ -14553,36 +14724,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2261031460359374503?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-01 response: body: - string: '{"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/2261031460359374503","name":"2261031460359374503","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T07:20:49.1648903Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4,"includedDiskList":[{"lun":-1,"name":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]}}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.9338331S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 + GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Config Blob Name":"config-clitestvmgtwfs-20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Config + Blob Container Name":"clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5/config-clitestvmgtwfs-20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5/azuredeploy20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Restored + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1","Backed-up + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-16T09:10:03.5248278Z","endTime":"2021-01-16T09:13:08.4586609Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1472' + - '2149' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:10 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -14592,7 +14774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '32' x-powered-by: - ASP.NET status: @@ -14606,36 +14788,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job show Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T07%3A14%3A46.9480676Z''\"","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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/20c27785-ccb6-49c0-b202-d17fbdbb1b08","name":"20c27785-ccb6-49c0-b202-d17fbdbb1b08","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M4.9338331S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 + GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 8:04:13 AM","Config Blob Name":"config-clitestvmgtwfs-20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Config + Blob Container Name":"clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5/config-clitestvmgtwfs-20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Target + resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmgtwfs-52774d6da40f443198b1fa62b19f5dc5/azuredeploy20c27785-ccb6-49c0-b202-d17fbdbb1b08.json","Restored + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1","Backed-up + disk(s)":"clitest-vm000003_OsDisk_1_eae82e92c71044e3b7d24f9b46e77595; mydisk1; + mydisk3"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-16T09:10:03.5248278Z","endTime":"2021-01-16T09:13:08.4586609Z","activityId":"9a78bc06-57da-11eb-b251-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '539' + - '2149' content-type: - application/json date: - - Fri, 18 Dec 2020 08:43:11 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -14644,6 +14837,10 @@ interactions: - 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 @@ -14655,990 +14852,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup container list Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk + - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + 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: - - '312' + - '1220' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 08:43:13 GMT + - Sat, 16 Jan 2021 09:13:41 GMT expires: - '-1' pragma: - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T07:16:42.6616357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T07:16:42.5991420Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '974' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,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 - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2261031460359374503", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", - "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", - "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": - false, "restoreDiskLunList": []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-disks - Connection: - - keep-alive - Content-Length: - - '883' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.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/recoveryPoints/2261031460359374503/restore?api-version=2019-06-15 - 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/4ba5ace5-2d67-4293-a3e9-e16866b3813d?api-version=2019-06-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 08:43: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4ba5ace5-2d67-4293-a3e9-e16866b3813d?api-version=2019-06-15 - 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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/4ba5ace5-2d67-4293-a3e9-e16866b3813d?api-version=2016-12-01 - response: - body: - string: '{"id":"4ba5ace5-2d67-4293-a3e9-e16866b3813d","name":"4ba5ace5-2d67-4293-a3e9-e16866b3813d","status":"Succeeded","startTime":"2020-12-18T08:43:16.4481955Z","endTime":"2020-12-18T08:43:16.4481955Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"75e603c8-e150-4060-bff2-80fce7c68c55"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43: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: - - '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-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --restore-only-osdisk - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.1126555S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1239' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.5287979S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1239' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.3034359S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1239' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38.1918663S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1240' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:43: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.992399S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1240' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:44: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.8254814S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1242' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:44: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.577111S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1332' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:45: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M41.3638884S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:43:16.4481955Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:45: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.6108825S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Config Blob Name":"config-clitestvmyajs5-75e603c8-e150-4060-bff2-80fce7c68c55.json","Config - Blob Container Name":"clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416/config-clitestvmyajs5-75e603c8-e150-4060-bff2-80fce7c68c55.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416/azuredeploy75e603c8-e150-4060-bff2-80fce7c68c55.json","Restored - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0","Backed-up - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1; - mydisk3"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T08:43:16.4481955Z","endTime":"2020-12-18T08:46:24.059078Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '2072' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:46: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: - - '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 show - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/75e603c8-e150-4060-bff2-80fce7c68c55?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/75e603c8-e150-4060-bff2-80fce7c68c55","name":"75e603c8-e150-4060-bff2-80fce7c68c55","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.6108825S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Config Blob Name":"config-clitestvmyajs5-75e603c8-e150-4060-bff2-80fce7c68c55.json","Config - Blob Container Name":"clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416/config-clitestvmyajs5-75e603c8-e150-4060-bff2-80fce7c68c55.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-41eb3903c3d144da8b4127b3182ce416/azuredeploy75e603c8-e150-4060-bff2-80fce7c68c55.json","Restored - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0","Backed-up - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1; - mydisk3"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T08:43:16.4481955Z","endTime":"2020-12-18T08:46:24.059078Z","activityId":"0902e2f2-410d-11eb-9610-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '2072' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08: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: - - '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-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2019-06-15&$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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2588' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:47: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2016-12-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: - - Fri, 18 Dec 2020 08:47: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 restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2019-06-15&$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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2588' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:47: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: - - '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-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2016-12-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: - - Fri, 18 Dec 2020 08:47:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -15662,30 +14905,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2261031460359374503?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"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/2261031460359374503","name":"2261031460359374503","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T07:20:49.1648903Z","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","recoveryPointDiskConfiguration":{"numberOfDisksIncludedInBackup":3,"numberOfDisksAttachedToVm":4,"includedDiskList":[{"lun":-1,"name":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0"},{"lun":0,"name":"mydisk1"},{"lun":2,"name":"mydisk3"}],"excludedDiskList":[{"lun":1,"name":"mydisk2"}]}}}' + 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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '1472' + - '2583' content-type: - application/json date: - - Fri, 18 Dec 2020 08:47:08 GMT + - Sat, 16 Jan 2021 09:13:43 GMT expires: - '-1' pragma: @@ -15715,30 +14959,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T07%3A14%3A46.9480676Z''\"","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: '{"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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T08:04:09.5159351Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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-01-16T08:04:13.2158135Z"}}]}' headers: cache-control: - no-cache content-length: - - '539' + - '2583' content-type: - application/json date: - - Fri, 18 Dec 2020 08:47:09 GMT + - Sat, 16 Jan 2021 09:13:43 GMT expires: - '-1' pragma: @@ -15753,6 +14999,10 @@ interactions: - 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 @@ -15764,147 +15014,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '312' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 08:47:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T07:16:42.6616357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T07:16:42.5991420Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '974' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:47:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,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 - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2261031460359374503", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", - "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", - "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": - false, "restoreDiskLunList": [0]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-disks + - backup protection disable Connection: - keep-alive Content-Length: - - '884' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/recoveryPoints/2261031460359374503/restore?api-version=2019-06-15 + 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=2020-10-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/4c76b68f-32c5-4212-af81-64b2b9facb7c?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:47:13 GMT + - Sat, 16 Jan 2021 09:13: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4c76b68f-32c5-4212-af81-64b2b9facb7c?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -15918,150 +15066,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/4c76b68f-32c5-4212-af81-64b2b9facb7c?api-version=2016-12-01 - response: - body: - string: '{"id":"4c76b68f-32c5-4212-af81-64b2b9facb7c","name":"4c76b68f-32c5-4212-af81-64b2b9facb7c","status":"Succeeded","startTime":"2020-12-18T08:47:13.326705Z","endTime":"2020-12-18T08:47:13.326705Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9866e35a-13b6-4fb0-9628-2659b707bce3"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:47: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: - - '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-disks - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account --diskslist - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.6736653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' - headers: - cache-control: - - no-cache - content-length: - - '1238' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 08:47: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: - - '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 + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5.9001802S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1238' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:47:19 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16071,7 +15106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -16085,40 +15120,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.665479S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1237' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:47:20 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16128,7 +15160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -16142,40 +15174,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37.399596S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1238' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:47:51 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16185,7 +15214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: @@ -16199,40 +15228,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.1566916S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1240' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:48:21 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16242,7 +15268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '145' x-powered-by: - ASP.NET status: @@ -16256,40 +15282,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M38.9398587S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 7:20:49 AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1241' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:48:52 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16299,7 +15322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '144' x-powered-by: - ASP.NET status: @@ -16313,41 +15336,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M9.7727641S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 - GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1331' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:49:23 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16357,7 +15376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '143' x-powered-by: - ASP.NET status: @@ -16371,41 +15390,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M40.591714S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 - GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Target resource group":"clitest.rg000001"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T08:47:13.326705Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1331' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:49:54 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16415,7 +15430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '142' x-powered-by: - ASP.NET status: @@ -16429,47 +15444,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.4501332S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 - GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Config Blob Name":"config-clitestvmyajs5-9866e35a-13b6-4fb0-9628-2659b707bce3.json","Config - Blob Container Name":"clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18/config-clitestvmyajs5-9866e35a-13b6-4fb0-9628-2659b707bce3.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18/azuredeploy9866e35a-13b6-4fb0-9628-2659b707bce3.json","Restored - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1","Backed-up - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1; - mydisk3"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T08:47:13.326705Z","endTime":"2020-12-18T08:50:20.7768382Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2081' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:50:24 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16479,7 +15484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '141' x-powered-by: - ASP.NET status: @@ -16493,47 +15498,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9866e35a-13b6-4fb0-9628-2659b707bce3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9866e35a-13b6-4fb0-9628-2659b707bce3","name":"9866e35a-13b6-4fb0-9628-2659b707bce3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.4501332S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"137 - GBs / 137 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 7:20:49 - AM","Config Blob Name":"config-clitestvmyajs5-9866e35a-13b6-4fb0-9628-2659b707bce3.json","Config - Blob Container Name":"clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18/config-clitestvmyajs5-9866e35a-13b6-4fb0-9628-2659b707bce3.json","Target - resource group":"clitest.rg000001","Template Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmyajs5-c0881fd125484a8a9d0c66155e02be18/azuredeploy9866e35a-13b6-4fb0-9628-2659b707bce3.json","Restored - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1","Backed-up - disk(s)":"clitest-vm000003_disk1_24f52c036f4b42ef833f7475b3ee52e0; mydisk1; - mydisk3"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T08:47:13.326705Z","endTime":"2020-12-18T08:50:20.7768382Z","activityId":"98016a2d-410d-11eb-b125-c03eba45757e"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2081' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:50:56 GMT + - Sat, 16 Jan 2021 09:13: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: @@ -16543,7 +15538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -16557,30 +15552,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-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","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"}}]}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:50:58 GMT + - Sat, 16 Jan 2021 09:13:57 GMT expires: - '-1' pragma: @@ -16596,7 +15592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -16610,31 +15606,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-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","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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2588' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:00 GMT + - Sat, 16 Jan 2021 09:13:58 GMT expires: - '-1' pragma: @@ -16650,7 +15646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -16671,25 +15667,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-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","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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T07:20:45.0725911Z","protectedItemDataId":"2260824606102132281","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"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":"2020-12-18T07:20:49.1648903Z"}}]}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2588' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:02 GMT + - Sat, 16 Jan 2021 09:13:59 GMT expires: - '-1' pragma: @@ -16705,7 +15700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -16722,47 +15717,49 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:51:04 GMT + - Sat, 16 Jan 2021 09:14:01 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -16778,15 +15775,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16795,7 +15792,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:05 GMT + - Sat, 16 Jan 2021 09:14:02 GMT expires: - '-1' pragma: @@ -16811,7 +15808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -16832,15 +15829,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16849,7 +15846,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:07 GMT + - Sat, 16 Jan 2021 09:14:04 GMT expires: - '-1' pragma: @@ -16865,7 +15862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -16886,15 +15883,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16903,7 +15900,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:08 GMT + - Sat, 16 Jan 2021 09:14:05 GMT expires: - '-1' pragma: @@ -16919,7 +15916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '133' x-powered-by: - ASP.NET status: @@ -16940,15 +15937,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -16957,7 +15954,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:10 GMT + - Sat, 16 Jan 2021 09:14:06 GMT expires: - '-1' pragma: @@ -16973,7 +15970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '132' x-powered-by: - ASP.NET status: @@ -16994,15 +15991,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17011,7 +16008,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:11 GMT + - Sat, 16 Jan 2021 09:14:08 GMT expires: - '-1' pragma: @@ -17027,7 +16024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '131' x-powered-by: - ASP.NET status: @@ -17048,15 +16045,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17065,7 +16062,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:13 GMT + - Sat, 16 Jan 2021 09:14:09 GMT expires: - '-1' pragma: @@ -17081,7 +16078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '130' x-powered-by: - ASP.NET status: @@ -17102,15 +16099,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17119,7 +16116,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:14 GMT + - Sat, 16 Jan 2021 09:14:10 GMT expires: - '-1' pragma: @@ -17135,7 +16132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '129' x-powered-by: - ASP.NET status: @@ -17156,15 +16153,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17173,7 +16170,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:16 GMT + - Sat, 16 Jan 2021 09:14:11 GMT expires: - '-1' pragma: @@ -17189,7 +16186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '128' x-powered-by: - ASP.NET status: @@ -17210,15 +16207,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17227,7 +16224,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:18 GMT + - Sat, 16 Jan 2021 09:14:13 GMT expires: - '-1' pragma: @@ -17243,7 +16240,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '127' x-powered-by: - ASP.NET status: @@ -17264,15 +16261,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17281,7 +16278,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:19 GMT + - Sat, 16 Jan 2021 09:14:14 GMT expires: - '-1' pragma: @@ -17297,7 +16294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '126' x-powered-by: - ASP.NET status: @@ -17318,15 +16315,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17335,7 +16332,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:21 GMT + - Sat, 16 Jan 2021 09:14:15 GMT expires: - '-1' pragma: @@ -17351,7 +16348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '125' x-powered-by: - ASP.NET status: @@ -17372,15 +16369,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17389,7 +16386,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:22 GMT + - Sat, 16 Jan 2021 09:14:16 GMT expires: - '-1' pragma: @@ -17405,7 +16402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '124' x-powered-by: - ASP.NET status: @@ -17426,15 +16423,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17443,7 +16440,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:24 GMT + - Sat, 16 Jan 2021 09:14:18 GMT expires: - '-1' pragma: @@ -17459,7 +16456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '123' x-powered-by: - ASP.NET status: @@ -17480,15 +16477,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17497,7 +16494,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:25 GMT + - Sat, 16 Jan 2021 09:14:19 GMT expires: - '-1' pragma: @@ -17513,7 +16510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '122' x-powered-by: - ASP.NET status: @@ -17534,15 +16531,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17551,7 +16548,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:27 GMT + - Sat, 16 Jan 2021 09:14:21 GMT expires: - '-1' pragma: @@ -17567,7 +16564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '121' x-powered-by: - ASP.NET status: @@ -17588,15 +16585,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17605,7 +16602,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:28 GMT + - Sat, 16 Jan 2021 09:14:22 GMT expires: - '-1' pragma: @@ -17621,7 +16618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '120' x-powered-by: - ASP.NET status: @@ -17642,15 +16639,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17659,7 +16656,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:30 GMT + - Sat, 16 Jan 2021 09:14:23 GMT expires: - '-1' pragma: @@ -17675,7 +16672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '119' x-powered-by: - ASP.NET status: @@ -17696,15 +16693,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17713,7 +16710,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:31 GMT + - Sat, 16 Jan 2021 09:14:24 GMT expires: - '-1' pragma: @@ -17729,7 +16726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '118' x-powered-by: - ASP.NET status: @@ -17750,15 +16747,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17767,7 +16764,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:33 GMT + - Sat, 16 Jan 2021 09:14:25 GMT expires: - '-1' pragma: @@ -17783,7 +16780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '117' x-powered-by: - ASP.NET status: @@ -17804,15 +16801,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17821,7 +16818,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:34 GMT + - Sat, 16 Jan 2021 09:14:27 GMT expires: - '-1' pragma: @@ -17837,7 +16834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '116' x-powered-by: - ASP.NET status: @@ -17858,15 +16855,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17875,7 +16872,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:36 GMT + - Sat, 16 Jan 2021 09:14:28 GMT expires: - '-1' pragma: @@ -17891,7 +16888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '115' x-powered-by: - ASP.NET status: @@ -17912,15 +16909,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17929,7 +16926,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:37 GMT + - Sat, 16 Jan 2021 09:14:29 GMT expires: - '-1' pragma: @@ -17945,7 +16942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '114' x-powered-by: - ASP.NET status: @@ -17966,15 +16963,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17983,7 +16980,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:39 GMT + - Sat, 16 Jan 2021 09:14:31 GMT expires: - '-1' pragma: @@ -17999,7 +16996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '113' x-powered-by: - ASP.NET status: @@ -18020,15 +17017,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18037,7 +17034,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:40 GMT + - Sat, 16 Jan 2021 09:14:33 GMT expires: - '-1' pragma: @@ -18053,7 +17050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '112' x-powered-by: - ASP.NET status: @@ -18074,15 +17071,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18091,7 +17088,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:42 GMT + - Sat, 16 Jan 2021 09:14:34 GMT expires: - '-1' pragma: @@ -18107,7 +17104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '111' x-powered-by: - ASP.NET status: @@ -18128,15 +17125,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18145,7 +17142,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:43 GMT + - Sat, 16 Jan 2021 09:14:36 GMT expires: - '-1' pragma: @@ -18161,7 +17158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '110' x-powered-by: - ASP.NET status: @@ -18182,15 +17179,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18199,7 +17196,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:45 GMT + - Sat, 16 Jan 2021 09:14:37 GMT expires: - '-1' pragma: @@ -18215,7 +17212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '109' x-powered-by: - ASP.NET status: @@ -18236,15 +17233,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18253,7 +17250,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:46 GMT + - Sat, 16 Jan 2021 09:14:38 GMT expires: - '-1' pragma: @@ -18269,7 +17266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '108' x-powered-by: - ASP.NET status: @@ -18290,15 +17287,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18307,7 +17304,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:48 GMT + - Sat, 16 Jan 2021 09:14:40 GMT expires: - '-1' pragma: @@ -18323,7 +17320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '107' x-powered-by: - ASP.NET status: @@ -18344,15 +17341,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18361,7 +17358,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:49 GMT + - Sat, 16 Jan 2021 09:14:41 GMT expires: - '-1' pragma: @@ -18377,7 +17374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '106' x-powered-by: - ASP.NET status: @@ -18398,15 +17395,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18415,7 +17412,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:51 GMT + - Sat, 16 Jan 2021 09:14:43 GMT expires: - '-1' pragma: @@ -18431,7 +17428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '105' x-powered-by: - ASP.NET status: @@ -18452,15 +17449,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18469,7 +17466,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:53 GMT + - Sat, 16 Jan 2021 09:14:44 GMT expires: - '-1' pragma: @@ -18485,7 +17482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '104' x-powered-by: - ASP.NET status: @@ -18506,15 +17503,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18523,7 +17520,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:55 GMT + - Sat, 16 Jan 2021 09:14:45 GMT expires: - '-1' pragma: @@ -18539,7 +17536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '103' x-powered-by: - ASP.NET status: @@ -18560,15 +17557,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18577,7 +17574,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:57 GMT + - Sat, 16 Jan 2021 09:14:47 GMT expires: - '-1' pragma: @@ -18593,7 +17590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '102' x-powered-by: - ASP.NET status: @@ -18614,15 +17611,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18631,7 +17628,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:51:58 GMT + - Sat, 16 Jan 2021 09:14:48 GMT expires: - '-1' pragma: @@ -18647,7 +17644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '101' x-powered-by: - ASP.NET status: @@ -18668,15 +17665,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18685,7 +17682,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:00 GMT + - Sat, 16 Jan 2021 09:14:49 GMT expires: - '-1' pragma: @@ -18701,7 +17698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '100' x-powered-by: - ASP.NET status: @@ -18722,15 +17719,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18739,7 +17736,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:01 GMT + - Sat, 16 Jan 2021 09:14:51 GMT expires: - '-1' pragma: @@ -18755,7 +17752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '99' x-powered-by: - ASP.NET status: @@ -18776,15 +17773,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18793,7 +17790,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:03 GMT + - Sat, 16 Jan 2021 09:14:52 GMT expires: - '-1' pragma: @@ -18809,7 +17806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '98' x-powered-by: - ASP.NET status: @@ -18830,15 +17827,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18847,7 +17844,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:04 GMT + - Sat, 16 Jan 2021 09:14:53 GMT expires: - '-1' pragma: @@ -18863,7 +17860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '97' x-powered-by: - ASP.NET status: @@ -18884,15 +17881,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18901,7 +17898,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:06 GMT + - Sat, 16 Jan 2021 09:14:54 GMT expires: - '-1' pragma: @@ -18917,7 +17914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '96' x-powered-by: - ASP.NET status: @@ -18938,15 +17935,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18955,7 +17952,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:07 GMT + - Sat, 16 Jan 2021 09:14:56 GMT expires: - '-1' pragma: @@ -18971,7 +17968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '95' x-powered-by: - ASP.NET status: @@ -18992,15 +17989,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19009,7 +18006,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:09 GMT + - Sat, 16 Jan 2021 09:14:57 GMT expires: - '-1' pragma: @@ -19025,7 +18022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '94' x-powered-by: - ASP.NET status: @@ -19046,15 +18043,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19063,7 +18060,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:10 GMT + - Sat, 16 Jan 2021 09:14:59 GMT expires: - '-1' pragma: @@ -19079,7 +18076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '93' x-powered-by: - ASP.NET status: @@ -19100,15 +18097,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19117,7 +18114,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:12 GMT + - Sat, 16 Jan 2021 09:15:02 GMT expires: - '-1' pragma: @@ -19133,7 +18130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '92' x-powered-by: - ASP.NET status: @@ -19154,15 +18151,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19171,7 +18168,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:14 GMT + - Sat, 16 Jan 2021 09:15:03 GMT expires: - '-1' pragma: @@ -19187,7 +18184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '91' x-powered-by: - ASP.NET status: @@ -19208,15 +18205,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19225,7 +18222,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:15 GMT + - Sat, 16 Jan 2021 09:15:04 GMT expires: - '-1' pragma: @@ -19241,7 +18238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '90' x-powered-by: - ASP.NET status: @@ -19262,15 +18259,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19279,7 +18276,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:17 GMT + - Sat, 16 Jan 2021 09:15:05 GMT expires: - '-1' pragma: @@ -19295,7 +18292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '89' x-powered-by: - ASP.NET status: @@ -19316,15 +18313,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19333,7 +18330,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:18 GMT + - Sat, 16 Jan 2021 09:15:07 GMT expires: - '-1' pragma: @@ -19349,7 +18346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '88' x-powered-by: - ASP.NET status: @@ -19370,15 +18367,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19387,7 +18384,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:20 GMT + - Sat, 16 Jan 2021 09:15:09 GMT expires: - '-1' pragma: @@ -19403,7 +18400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '87' x-powered-by: - ASP.NET status: @@ -19424,15 +18421,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19441,7 +18438,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:21 GMT + - Sat, 16 Jan 2021 09:15:10 GMT expires: - '-1' pragma: @@ -19457,7 +18454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '86' x-powered-by: - ASP.NET status: @@ -19478,15 +18475,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19495,7 +18492,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:23 GMT + - Sat, 16 Jan 2021 09:15:11 GMT expires: - '-1' pragma: @@ -19511,7 +18508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '85' x-powered-by: - ASP.NET status: @@ -19532,15 +18529,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19549,7 +18546,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:24 GMT + - Sat, 16 Jan 2021 09:15:13 GMT expires: - '-1' pragma: @@ -19565,7 +18562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '84' x-powered-by: - ASP.NET status: @@ -19586,15 +18583,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19603,7 +18600,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:26 GMT + - Sat, 16 Jan 2021 09:15:14 GMT expires: - '-1' pragma: @@ -19619,7 +18616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '83' x-powered-by: - ASP.NET status: @@ -19640,15 +18637,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19657,7 +18654,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:27 GMT + - Sat, 16 Jan 2021 09:15:16 GMT expires: - '-1' pragma: @@ -19673,7 +18670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '82' x-powered-by: - ASP.NET status: @@ -19694,15 +18691,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19711,7 +18708,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:29 GMT + - Sat, 16 Jan 2021 09:15:17 GMT expires: - '-1' pragma: @@ -19727,7 +18724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '81' x-powered-by: - ASP.NET status: @@ -19748,15 +18745,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19765,7 +18762,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:30 GMT + - Sat, 16 Jan 2021 09:15:18 GMT expires: - '-1' pragma: @@ -19781,7 +18778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '80' x-powered-by: - ASP.NET status: @@ -19802,15 +18799,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19819,7 +18816,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:32 GMT + - Sat, 16 Jan 2021 09:15:19 GMT expires: - '-1' pragma: @@ -19835,7 +18832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '79' x-powered-by: - ASP.NET status: @@ -19856,15 +18853,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19873,7 +18870,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:33 GMT + - Sat, 16 Jan 2021 09:15:20 GMT expires: - '-1' pragma: @@ -19889,7 +18886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '78' x-powered-by: - ASP.NET status: @@ -19910,15 +18907,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19927,7 +18924,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:35 GMT + - Sat, 16 Jan 2021 09:15:21 GMT expires: - '-1' pragma: @@ -19943,7 +18940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '77' x-powered-by: - ASP.NET status: @@ -19964,15 +18961,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19981,7 +18978,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:37 GMT + - Sat, 16 Jan 2021 09:15:22 GMT expires: - '-1' pragma: @@ -19997,7 +18994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '76' x-powered-by: - ASP.NET status: @@ -20018,15 +19015,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20035,7 +19032,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:38 GMT + - Sat, 16 Jan 2021 09:15:25 GMT expires: - '-1' pragma: @@ -20051,7 +19048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '75' x-powered-by: - ASP.NET status: @@ -20072,15 +19069,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20089,7 +19086,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:40 GMT + - Sat, 16 Jan 2021 09:15:26 GMT expires: - '-1' pragma: @@ -20105,7 +19102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '74' x-powered-by: - ASP.NET status: @@ -20126,15 +19123,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20143,7 +19140,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:41 GMT + - Sat, 16 Jan 2021 09:15:27 GMT expires: - '-1' pragma: @@ -20159,7 +19156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '73' x-powered-by: - ASP.NET status: @@ -20180,15 +19177,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20197,7 +19194,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:43 GMT + - Sat, 16 Jan 2021 09:15:29 GMT expires: - '-1' pragma: @@ -20213,7 +19210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '72' x-powered-by: - ASP.NET status: @@ -20234,15 +19231,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20251,7 +19248,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:44 GMT + - Sat, 16 Jan 2021 09:15:30 GMT expires: - '-1' pragma: @@ -20267,7 +19264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '71' x-powered-by: - ASP.NET status: @@ -20288,15 +19285,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20305,7 +19302,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:46 GMT + - Sat, 16 Jan 2021 09:15:31 GMT expires: - '-1' pragma: @@ -20321,7 +19318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '70' x-powered-by: - ASP.NET status: @@ -20342,15 +19339,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20359,7 +19356,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:47 GMT + - Sat, 16 Jan 2021 09:15:33 GMT expires: - '-1' pragma: @@ -20375,7 +19372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '69' x-powered-by: - ASP.NET status: @@ -20396,15 +19393,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20413,7 +19410,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:49 GMT + - Sat, 16 Jan 2021 09:15:34 GMT expires: - '-1' pragma: @@ -20429,7 +19426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '68' x-powered-by: - ASP.NET status: @@ -20450,15 +19447,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20467,7 +19464,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:50 GMT + - Sat, 16 Jan 2021 09:15:35 GMT expires: - '-1' pragma: @@ -20483,7 +19480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '67' x-powered-by: - ASP.NET status: @@ -20504,15 +19501,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20521,7 +19518,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:52 GMT + - Sat, 16 Jan 2021 09:15:36 GMT expires: - '-1' pragma: @@ -20537,7 +19534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '66' x-powered-by: - ASP.NET status: @@ -20558,15 +19555,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"InProgress","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"InProgress","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -20575,7 +19572,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:53 GMT + - Sat, 16 Jan 2021 09:15:38 GMT expires: - '-1' pragma: @@ -20591,7 +19588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '65' x-powered-by: - ASP.NET status: @@ -20612,15 +19609,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5efa9931-c070-4c36-930a-c39545dcb113?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ce6cf9f6-5ece-4215-9040-9dd1f78c011b?api-version=2020-10-01 response: body: - string: '{"id":"5efa9931-c070-4c36-930a-c39545dcb113","name":"5efa9931-c070-4c36-930a-c39545dcb113","status":"Succeeded","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"2020-12-18T08:51:04.0571739Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"09611fd8-0582-4b1c-bb49-c86494b7431d"}}' + string: '{"id":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","name":"ce6cf9f6-5ece-4215-9040-9dd1f78c011b","status":"Succeeded","startTime":"2021-01-16T09:13:45.3335372Z","endTime":"2021-01-16T09:13:45.3335372Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d5c8c1de-9282-435a-8f3a-01c5565e5805"}}' headers: cache-control: - no-cache @@ -20629,7 +19626,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:55 GMT + - Sat, 16 Jan 2021 09:15:39 GMT expires: - '-1' pragma: @@ -20645,7 +19642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '64' x-powered-by: - ASP.NET status: @@ -20666,16 +19663,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/09611fd8-0582-4b1c-bb49-c86494b7431d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d5c8c1de-9282-435a-8f3a-01c5565e5805?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/09611fd8-0582-4b1c-bb49-c86494b7431d","name":"09611fd8-0582-4b1c-bb49-c86494b7431d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.6754985S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T08:51:04.0571739Z","endTime":"2020-12-18T08:52:55.7326724Z","activityId":"273b3caf-410e-11eb-8eae-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d5c8c1de-9282-435a-8f3a-01c5565e5805","name":"d5c8c1de-9282-435a-8f3a-01c5565e5805","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M53.1788479S","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-01-16T09:13:45.3335372Z","endTime":"2021-01-16T09:15:38.5123851Z","activityId":"2151482b-57db-11eb-9e72-c8f750f92764"}}' headers: cache-control: - no-cache @@ -20684,7 +19681,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:52:56 GMT + - Sat, 16 Jan 2021 09:15:40 GMT expires: - '-1' pragma: @@ -20723,8 +19720,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -20738,7 +19735,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 08:53:04 GMT + - Sat, 16 Jan 2021 09:15:45 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml index cca71157255..fe2528cae2b 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_item.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T08%3A53%3A23.3142838Z''\"","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-01-15T14%3A10%3A03.7592412Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:53:24 GMT + - Fri, 15 Jan 2021 14:10:03 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + - '208' status: code: 201 message: Created @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T08:53:10Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:53:25 GMT + - Fri, 15 Jan 2021 14:10:05 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 08:53:26 GMT + - Fri, 15 Jan 2021 14:10:07 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 08:58:26 GMT + - Fri, 15 Jan 2021 14:15:07 GMT source-age: - - '74' + - '221' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - MISS, HIT + - HIT, HIT x-cache-hits: - - 0, 1 + - 2, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 24e7192056685c8ca8ec704e4962c61de2acf085 + - 9fd8fe9358908f4ffac0e65a8a829463ee2923e4 x-frame-options: - deny x-github-request-id: - - 39E0:1ECA:12AF2:1B5F1:5FDC5F93 + - 345C:61E7:B60E8:C0857:60017CFC x-served-by: - - cache-mia11345-MIA + - cache-sin18044-SIN x-timer: - - S1608281606.238712,VS0,VE26 + - S1610719808.727067,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:53:25 GMT + - Fri, 15 Jan 2021 14:10:07 GMT expires: - '-1' pragma: @@ -293,18 +290,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_vwLySLTSBkp76bdr997KvF3wgzGqg2Cb","name":"vm_deploy_vwLySLTSBkp76bdr997KvF3wgzGqg2Cb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4212222826736237550","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T08:53:33.9401949Z","duration":"PT3.8833717S","correlationId":"b321d27c-cd11-486e-874b-3e38191dbf0b","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_jFo5xvCtd7VAazH0U4YA7cxDq3gFRnRn","name":"vm_deploy_jFo5xvCtd7VAazH0U4YA7cxDq3gFRnRn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6802679314275627840","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:10:09.7897415Z","duration":"PT1.2626298S","correlationId":"ea9bb66e-c43c-49f1-b9f4-5f82f9eeda67","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_vwLySLTSBkp76bdr997KvF3wgzGqg2Cb/operationStatuses/08585933252754208046?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_jFo5xvCtd7VAazH0U4YA7cxDq3gFRnRn/operationStatuses/08585908870769505261?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -312,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:53:35 GMT + - Fri, 15 Jan 2021 14:10:09 GMT expires: - '-1' pragma: @@ -322,7 +319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -340,10 +337,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870769505261?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: + - Fri, 15 Jan 2021 14:10:40 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870769505261?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: + - Fri, 15 Jan 2021 14:11:10 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933252754208046?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870769505261?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:07 GMT + - Fri, 15 Jan 2021 14:11:40 GMT expires: - '-1' pragma: @@ -383,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933252754208046?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870769505261?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -398,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:37 GMT + - Fri, 15 Jan 2021 14:12:11 GMT expires: - '-1' pragma: @@ -426,22 +509,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_vwLySLTSBkp76bdr997KvF3wgzGqg2Cb","name":"vm_deploy_vwLySLTSBkp76bdr997KvF3wgzGqg2Cb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4212222826736237550","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T08:54:29.3247754Z","duration":"PT59.2679522S","correlationId":"b321d27c-cd11-486e-874b-3e38191dbf0b","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_jFo5xvCtd7VAazH0U4YA7cxDq3gFRnRn","name":"vm_deploy_jFo5xvCtd7VAazH0U4YA7cxDq3gFRnRn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6802679314275627840","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:11:43.3459646Z","duration":"PT1M34.8188529S","correlationId":"ea9bb66e-c43c-49f1-b9f4-5f82f9eeda67","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: - - '4085' + - '4087' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:38 GMT + - Fri, 15 Jan 2021 14:12:11 GMT expires: - '-1' pragma: @@ -469,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -478,16 +561,16 @@ interactions: \ \"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\": \"5d58610c-bb05-4f19-bdf7-a0636f662952\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"17f531bf-6a93-49fb-9556-925bf18d6529\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b9a86e0b161944919db3f60e934a0c7d\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\",\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_disk1_b9a86e0b161944919db3f60e934a0c7d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\"\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\": @@ -501,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T08:54:39+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:12:12+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_b9a86e0b161944919db3f60e934a0c7d\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T08:54:02.3887007+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:27.039347+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T08:54:26.6859144+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:11:41.5074781+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}" @@ -518,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3427' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:39 GMT + - Fri, 15 Jan 2021 14:12:11 GMT expires: - '-1' pragma: @@ -539,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -547,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -557,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"e9006df7-1a77-4a64-af19-e595905eeeb7\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b8ed8921-520b-4806-98d5-c9a387385da0\\\"\",\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\": \"58a3c923-52d0-475a-a785-5a063c233d83\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7c9ddc9d-74b4-45f1-a611-d49626978275\",\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/\\\"e9006df7-1a77-4a64-af19-e595905eeeb7\\\"\",\r\n + \ \"etag\": \"W/\\\"b8ed8921-520b-4806-98d5-c9a387385da0\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -582,8 +662,8 @@ interactions: \ },\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\": - \"ocicg2dxuqjetiszedffnrixte.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-56-9D-38\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"3qw4csogb1cenkxy0t3bsqxwtg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-1C-3E\",\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\": @@ -597,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:39 GMT + - Fri, 15 Jan 2021 14:12:11 GMT etag: - - W/"e9006df7-1a77-4a64-af19-e595905eeeb7" + - W/"b8ed8921-520b-4806-98d5-c9a387385da0" expires: - '-1' pragma: @@ -616,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84c0f2b8-42ad-4fbf-ba9d-54ced8f319f3 + - cdad8b35-4155-4197-a59d-cc90bf62e01e status: code: 200 message: OK @@ -624,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -634,21 +714,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"c4ba93fd-3188-443a-a8e6-a344e0a82f97\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"9d8f1923-c8f0-4431-afba-c39eca7b1946\\\"\",\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\": \"d2b57943-2830-48b0-b108-725c402d8635\",\r\n - \ \"ipAddress\": \"23.98.67.221\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"319379da-cedd-4b15-b122-bef3ec31c9de\",\r\n + \ \"ipAddress\": \"13.76.41.114\",\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 @@ -661,9 +738,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:40 GMT + - Fri, 15 Jan 2021 14:12:11 GMT etag: - - W/"c4ba93fd-3188-443a-a8e6-a344e0a82f97" + - W/"9d8f1923-c8f0-4431-afba-c39eca7b1946" expires: - '-1' pragma: @@ -680,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee0006a4-3a30-4126-9494-cd72c65261aa + - 364c9b85-9e68-4edc-acc3-0fe7ec88d152 status: code: 200 message: OK @@ -698,15 +775,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T08:53:10Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -715,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:40 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -794,35 +871,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:41 GMT + - Fri, 15 Jan 2021 14:12:13 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 08:59:41 GMT + - Fri, 15 Jan 2021 14:17:13 GMT source-age: - - '149' + - '35' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - MISS, HIT + - HIT, MISS x-cache-hits: - - 0, 1 + - 1, 0 x-content-type-options: - nosniff x-fastly-request-id: - - 79d0f5d0333472482e25436b8c4bf83dee8380fb + - f5630b7ef07edf421103db9b6c3a86ee55b821ac x-frame-options: - deny x-github-request-id: - - 39E0:1ECA:12AF2:1B5F1:5FDC5F93 + - 6C9A:5FEB:DAEB8:E6B82:6001A2BD x-served-by: - - cache-mia11332-MIA + - cache-sin18041-SIN x-timer: - - S1608281681.148668,VS0,VE0 + - S1610719933.150284,VS0,VE244 x-xss-protection: - 1; mode=block status: @@ -832,7 +909,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -842,27 +919,24 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitest-vm000003VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET\",\r\n - \ \"etag\": \"W/\\\"86149ef1-ec13-4bf8-aa42-8248f1a0cdea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"12c01d47-a727-4ba8-ae53-314460620a22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\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\": - \"70239070-a477-4912-a259-20ca56c5179c\",\r\n \"addressSpace\": {\r\n + \"49e12dec-0ec6-46c4-aaf8-d4fa1942f69e\",\r\n \"addressSpace\": {\r\n \ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"clitest-vm000003Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000003VNET/subnets/clitest-vm000003Subnet\",\r\n - \ \"etag\": \"W/\\\"86149ef1-ec13-4bf8-aa42-8248f1a0cdea\\\"\",\r\n + \ \"etag\": \"W/\\\"12c01d47-a727-4ba8-ae53-314460620a22\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000003VMNic/ipConfigurations/ipconfigclitest-vm000003\"\r\n @@ -878,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:41 GMT + - Fri, 15 Jan 2021 14:12:13 GMT expires: - '-1' pragma: @@ -895,7 +969,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bba2f6d1-58c0-4e60-a534-400fbe666eb1 + - c387882b-6eaa-47a0-8c6b-d95f44563fca status: code: 200 message: OK @@ -947,26 +1021,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_vsYbrtPVMvIiExcCXJdwHlTAfs3CFQ8p","name":"vm_deploy_vsYbrtPVMvIiExcCXJdwHlTAfs3CFQ8p","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16103259487837365957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T08:54:48.2762749Z","duration":"PT3.1663028S","correlationId":"750d42c5-c788-4e61-819c-d782e7db747b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Teh0T8CfSvQ19i8DRrKTGzKw6l88Y9BO","name":"vm_deploy_Teh0T8CfSvQ19i8DRrKTGzKw6l88Y9BO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4155857935286134807","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:12:16.1128286Z","duration":"PT1.4716703S","correlationId":"69b31931-3edc-4063-b912-1bdff9620412","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_vsYbrtPVMvIiExcCXJdwHlTAfs3CFQ8p/operationStatuses/08585933252003676515?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Teh0T8CfSvQ19i8DRrKTGzKw6l88Y9BO/operationStatuses/08585908869508364806?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2592' + - '2591' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:54:49 GMT + - Fri, 15 Jan 2021 14:12:15 GMT expires: - '-1' pragma: @@ -976,7 +1050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -994,10 +1068,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869508364806?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: + - Fri, 15 Jan 2021 14:12:46 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869508364806?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: + - Fri, 15 Jan 2021 14:13: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: 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933252003676515?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869508364806?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1009,7 +1169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:20 GMT + - Fri, 15 Jan 2021 14:13:46 GMT expires: - '-1' pragma: @@ -1037,10 +1197,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933252003676515?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869508364806?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1052,7 +1212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:51 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1080,22 +1240,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_vsYbrtPVMvIiExcCXJdwHlTAfs3CFQ8p","name":"vm_deploy_vsYbrtPVMvIiExcCXJdwHlTAfs3CFQ8p","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16103259487837365957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T08:55:41.5911387Z","duration":"PT56.4811666S","correlationId":"750d42c5-c788-4e61-819c-d782e7db747b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_Teh0T8CfSvQ19i8DRrKTGzKw6l88Y9BO","name":"vm_deploy_Teh0T8CfSvQ19i8DRrKTGzKw6l88Y9BO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4155857935286134807","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:13:55.9600498Z","duration":"PT1M41.3188915S","correlationId":"69b31931-3edc-4063-b912-1bdff9620412","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3501' + - '3502' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:52 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1123,7 +1283,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: @@ -1132,16 +1292,16 @@ interactions: \ \"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\": \"006430cc-72d7-46e1-a5cd-0d26beb53530\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9acfd295-e8d4-46d7-92c4-cdcb91242e7b\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_0873e000573f4f928913118dbd844b39\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\",\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-vm000004_disk1_0873e000573f4f928913118dbd844b39\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": @@ -1155,16 +1315,16 @@ interactions: \ {\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\": \"2020-12-18T08:55:53+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:14:18+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_disk1_0873e000573f4f928913118dbd844b39\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T08:55:15.9053208+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:12:36.6008206+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T08:55:40.4057096+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:13:55.0843077+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}" @@ -1172,11 +1332,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:52 GMT + - Fri, 15 Jan 2021 14:14:18 GMT expires: - '-1' pragma: @@ -1193,7 +1353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31989 + - Microsoft.Compute/LowCostGet3Min;3923,Microsoft.Compute/LowCostGet30Min;31923 status: code: 200 message: OK @@ -1201,7 +1361,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1211,23 +1371,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic\",\r\n - \ \"etag\": \"W/\\\"ab4ca1f3-c05e-4aee-8bdb-025c36ad2d17\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"2afd7858-1488-4bd7-9bd5-0e0e7663f734\\\"\",\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\": \"530a2d32-9e51-4d01-9b46-baa4ed8016f7\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b5c965fd-e594-4813-a83e-36fe4ee5f827\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\",\r\n - \ \"etag\": \"W/\\\"ab4ca1f3-c05e-4aee-8bdb-025c36ad2d17\\\"\",\r\n + \ \"etag\": \"W/\\\"2afd7858-1488-4bd7-9bd5-0e0e7663f734\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1236,8 +1393,8 @@ interactions: \ },\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\": - \"ocicg2dxuqjetiszedffnrixte.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-57-4C-F2\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"3qw4csogb1cenkxy0t3bsqxwtg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C7-3F-22\",\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-vm000004NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1251,9 +1408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:53 GMT + - Fri, 15 Jan 2021 14:14:18 GMT etag: - - W/"ab4ca1f3-c05e-4aee-8bdb-025c36ad2d17" + - W/"2afd7858-1488-4bd7-9bd5-0e0e7663f734" expires: - '-1' pragma: @@ -1270,7 +1427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85d1153f-e578-4685-8538-90eed340829b + - 242d2cdf-1a17-47d1-8fb8-6eb4d80d2e13 status: code: 200 message: OK @@ -1278,7 +1435,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1288,21 +1445,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP\",\r\n - \ \"etag\": \"W/\\\"cdb9349d-715d-432f-ba83-32d961464933\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"11975466-fd70-4277-bcff-b68c6f698032\\\"\",\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\": \"e42c6cd4-f545-419b-87cc-80837c14f7a8\",\r\n - \ \"ipAddress\": \"23.101.31.197\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"bcba36b3-4e06-45fe-b5a6-bec1d06ed79f\",\r\n + \ \"ipAddress\": \"52.163.80.45\",\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-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1311,13 +1465,13 @@ interactions: cache-control: - no-cache content-length: - - '1182' + - '1181' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:54 GMT + - Fri, 15 Jan 2021 14:14:18 GMT etag: - - W/"cdb9349d-715d-432f-ba83-32d961464933" + - W/"11975466-fd70-4277-bcff-b68c6f698032" expires: - '-1' pragma: @@ -1334,7 +1488,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee81f128-ff17-416c-927d-33e440bc31c6 + - f4178812-6197-4065-b5f9-2148934eae9c status: code: 200 message: OK @@ -1352,7 +1506,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1361,16 +1515,16 @@ interactions: \ \"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\": \"5d58610c-bb05-4f19-bdf7-a0636f662952\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"17f531bf-6a93-49fb-9556-925bf18d6529\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b9a86e0b161944919db3f60e934a0c7d\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\",\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_disk1_b9a86e0b161944919db3f60e934a0c7d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\"\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\": @@ -1386,15 +1540,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T08:55:47+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_disk1_b9a86e0b161944919db3f60e934a0c7d\",\r\n + \ \"time\": \"2021-01-15T14:14:05+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_4df1d0e9f3d14de5bb3eb907ae984b22\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T08:54:02.3887007+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:27.039347+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\": \"2020-12-18T08:54:26.6859144+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:11:41.5074781+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}" @@ -1402,11 +1556,11 @@ interactions: cache-control: - no-cache content-length: - - '3573' + - '3581' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:55:54 GMT + - Fri, 15 Jan 2021 14:14:18 GMT expires: - '-1' pragma: @@ -1423,7 +1577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3920,Microsoft.Compute/LowCostGet30Min;31920 status: code: 200 message: OK @@ -1441,15 +1595,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T08%3A53%3A23.3142838Z''\"","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-01-15T14%3A10%3A03.7592412Z''\"","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 @@ -1458,7 +1612,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:55:56 GMT + - Fri, 15 Jan 2021 14:14:18 GMT expires: - '-1' pragma: @@ -1490,15 +1644,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1507,7 +1661,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:55:58 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1543,24 +1697,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-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.rghrnaowhxfh52sxt2mdkxonytx74kzexwigu35jfcyg2uw7ecldeoidrbzl2c5u7zq;clitest-vmyajs5/protectableItems/vm;iaasvmcontainerv2;clitest.rghrnaowhxfh52sxt2mdkxonytx74kzexwigu35jfcyg2uw7ecldeoidrbzl2c5u7zq;clitest-vmyajs5","name":"iaasvmcontainerv2;clitest.rghrnaowhxfh52sxt2mdkxonytx74kzexwigu35jfcyg2uw7ecldeoidrbzl2c5u7zq;clitest-vmyajs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghrnaowhxfh52sxt2mdkxonytx74kzexwigu35jfcyg2uw7ecldeoidrbzl2c5u7zq/providers/Microsoft.Compute/virtualMachines/clitest-vmyajs5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rghrnaowhxfh52sxt2mdkxonytx74kzexwigu35jfcyg2uw7ecldeoidrbzl2c5u7zq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmyajs5","protectionState":"NotProtected"}}]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","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;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmeardw","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmeardw","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vm6nvvh","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm6nvvh","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '7856' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:00 GMT + - Fri, 15 Jan 2021 14:14:20 GMT expires: - '-1' pragma: @@ -1593,48 +1747,52 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","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;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmeardw","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmeardw","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vm6nvvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vm6nvvh","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm6nvvh","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '7856' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:01 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + 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 @@ -1644,37 +1802,43 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + 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=2020-10-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/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:56:02 GMT + - Fri, 15 Jan 2021 14:14: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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + - 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/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-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-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1694,39 +1858,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:05 GMT + - Fri, 15 Jan 2021 14:14: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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1741,39 +1911,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:06 GMT + - Fri, 15 Jan 2021 14:14: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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: - - '147' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1788,39 +1964,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:08 GMT + - Fri, 15 Jan 2021 14:14: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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: - - '146' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1835,39 +2017,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:09 GMT + - Fri, 15 Jan 2021 14:14: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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: - - '145' + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1882,39 +2070,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:11 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: - - '144' + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1929,39 +2123,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:12 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-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: - - '143' + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1976,35 +2176,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ba5c046e-9900-4caa-8e16-e3854115b960?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:14 GMT + - Fri, 15 Jan 2021 14:14: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: - - '142' + - '143' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2019,24 +2229,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","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"}}]}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2531' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:16 GMT + - Fri, 15 Jan 2021 14:14:31 GMT expires: - '-1' pragma: @@ -2052,16 +2262,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' 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"}}' + body: null headers: Accept: - application/json @@ -2071,48 +2279,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 08:56:18 GMT + - Fri, 15 Jan 2021 14:14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2127,15 +2335,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2144,7 +2352,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:19 GMT + - Fri, 15 Jan 2021 14:14:33 GMT expires: - '-1' pragma: @@ -2160,7 +2368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -2180,15 +2388,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2197,7 +2405,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:21 GMT + - Fri, 15 Jan 2021 14:14:35 GMT expires: - '-1' pragma: @@ -2213,7 +2421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -2233,15 +2441,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2250,7 +2458,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:22 GMT + - Fri, 15 Jan 2021 14:14:36 GMT expires: - '-1' pragma: @@ -2266,7 +2474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -2286,15 +2494,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2303,7 +2511,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:24 GMT + - Fri, 15 Jan 2021 14:14:37 GMT expires: - '-1' pragma: @@ -2319,7 +2527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -2339,15 +2547,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2356,7 +2564,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:25 GMT + - Fri, 15 Jan 2021 14:14:39 GMT expires: - '-1' pragma: @@ -2372,7 +2580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: @@ -2392,15 +2600,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2409,7 +2617,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:27 GMT + - Fri, 15 Jan 2021 14:14:40 GMT expires: - '-1' pragma: @@ -2425,7 +2633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: @@ -2445,15 +2653,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2462,7 +2670,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:28 GMT + - Fri, 15 Jan 2021 14:14:41 GMT expires: - '-1' pragma: @@ -2478,7 +2686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '134' x-powered-by: - ASP.NET status: @@ -2498,15 +2706,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2515,7 +2723,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:31 GMT + - Fri, 15 Jan 2021 14:14:42 GMT expires: - '-1' pragma: @@ -2531,7 +2739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '133' x-powered-by: - ASP.NET status: @@ -2551,15 +2759,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2568,7 +2776,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:32 GMT + - Fri, 15 Jan 2021 14:14:45 GMT expires: - '-1' pragma: @@ -2584,7 +2792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '132' x-powered-by: - ASP.NET status: @@ -2604,15 +2812,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2621,7 +2829,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:34 GMT + - Fri, 15 Jan 2021 14:14:46 GMT expires: - '-1' pragma: @@ -2637,7 +2845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '131' x-powered-by: - ASP.NET status: @@ -2657,15 +2865,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2674,7 +2882,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:35 GMT + - Fri, 15 Jan 2021 14:14:47 GMT expires: - '-1' pragma: @@ -2690,7 +2898,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '130' x-powered-by: - ASP.NET status: @@ -2710,15 +2918,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2727,7 +2935,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:36 GMT + - Fri, 15 Jan 2021 14:14:48 GMT expires: - '-1' pragma: @@ -2743,7 +2951,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '129' x-powered-by: - ASP.NET status: @@ -2763,15 +2971,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2780,7 +2988,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:38 GMT + - Fri, 15 Jan 2021 14:14:50 GMT expires: - '-1' pragma: @@ -2796,7 +3004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '128' x-powered-by: - ASP.NET status: @@ -2816,15 +3024,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2833,7 +3041,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:39 GMT + - Fri, 15 Jan 2021 14:14:51 GMT expires: - '-1' pragma: @@ -2849,7 +3057,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '127' x-powered-by: - ASP.NET status: @@ -2869,15 +3077,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"InProgress","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2886,7 +3094,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:41 GMT + - Fri, 15 Jan 2021 14:14:52 GMT expires: - '-1' pragma: @@ -2902,7 +3110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '126' x-powered-by: - ASP.NET status: @@ -2922,24 +3130,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e14d1ff3-21dc-4d6b-9af9-82866e9c89ae?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","name":"e14d1ff3-21dc-4d6b-9af9-82866e9c89ae","status":"Succeeded","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"2021-01-15T14:14:22.1542554Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"63394dff-4351-42c0-8a67-ed61195eca8e"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:43 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -2955,7 +3163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '125' x-powered-by: - ASP.NET status: @@ -2975,30 +3183,32 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/63394dff-4351-42c0-8a67-ed61195eca8e?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/63394dff-4351-42c0-8a67-ed61195eca8e","name":"63394dff-4351-42c0-8a67-ed61195eca8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.8810012S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:14:22.1542554Z","endTime":"2021-01-15T14:14:53.0352566Z","activityId":"f53348d9-573b-11eb-aec3-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '968' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:44 GMT + - Fri, 15 Jan 2021 14: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: @@ -3008,7 +3218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '149' x-powered-by: - ASP.NET status: @@ -3028,30 +3238,67 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.RecoveryServices/vaults/clitest-vault000002/backupOperations/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: "{\r\n \"name\": \"clitest-vm000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004\",\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\": \"9acfd295-e8d4-46d7-92c4-cdcb91242e7b\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\",\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-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n + \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\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-vm000004VMNic\"}]},\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-01-15T14:14:55+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"clitest-vm000004_OsDisk_1_97a3fe80aafd4af585fd2bbb01f998d5\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:12:36.6008206+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-01-15T14:13:55.0843077+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: - - '188' + - '3428' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:56:46 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3060,10 +3307,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3924,Microsoft.Compute/LowCostGet30Min;31906 status: code: 200 message: OK @@ -3081,24 +3326,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + 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: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-15T14%3A10%3A03.7592412Z''\"","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: - - '188' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:47 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: @@ -3113,10 +3358,6 @@ interactions: - 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 @@ -3134,24 +3375,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"InProgress","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"0001-01-01T00:00:00"}' + 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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '188' + - '828' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:49 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: @@ -3167,7 +3408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '148' x-powered-by: - ASP.NET status: @@ -3187,24 +3428,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/6b8f12cd-ae31-4043-ac0a-74f26becba31?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"6b8f12cd-ae31-4043-ac0a-74f26becba31","name":"6b8f12cd-ae31-4043-ac0a-74f26becba31","status":"Succeeded","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"2020-12-18T08:56:18.4236399Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0a11a5d8-a9a2-4177-962d-661496ae71d1"}}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '2816' content-type: - application/json date: - - Fri, 18 Dec 2020 08:56:50 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: @@ -3220,7 +3461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '148' x-powered-by: - ASP.NET status: @@ -3237,50 +3478,140 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0a11a5d8-a9a2-4177-962d-661496ae71d1?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0a11a5d8-a9a2-4177-962d-661496ae71d1","name":"0a11a5d8-a9a2-4177-962d-661496ae71d1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.8469374S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T08:56:18.4236399Z","endTime":"2020-12-18T08:56:49.2705773Z","activityId":"d5f5e344-410e-11eb-a2ee-c03eba45757e"}}' + string: '' headers: cache-control: - no-cache content-length: - - '968' - content-type: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + 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: 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 08:56:52 GMT + - Fri, 15 Jan 2021 14:14: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3295,81 +3626,180 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 response: body: - string: "{\r\n \"name\": \"clitest-vm000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004\",\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\": \"006430cc-72d7-46e1-a5cd-0d26beb53530\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_0873e000573f4f928913118dbd844b39\",\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-vm000004_disk1_0873e000573f4f928913118dbd844b39\"\r\n - \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": - []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n - \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\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-vm000004VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"clitest-vm000004\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n - \ \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"2.7.41491.992\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T08:56:44+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000004_disk1_0873e000573f4f928913118dbd844b39\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T08:55:15.9053208+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\": \"2020-12-18T08:55:40.4057096+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}" + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:14: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15: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/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 + response: + body: + string: '' headers: cache-control: - no-cache content-length: - - '3573' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Fri, 18 Dec 2020 08:56:53 GMT + - Fri, 15 Jan 2021 14:15: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 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;3986,Microsoft.Compute/LowCostGet30Min;31984 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' + x-powered-by: + - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3384,41 +3814,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T08%3A53%3A23.3142838Z''\"","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: '' headers: cache-control: - no-cache content-length: - - '539' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 08:56:55 GMT + - Fri, 15 Jan 2021 14:15: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/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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: + - '134' + x-powered-by: + - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3433,45 +3861,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' + string: '' headers: cache-control: - no-cache content-length: - - '828' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 08:56:56 GMT + - Fri, 15 Jan 2021 14:15: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/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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: - - '149' + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3486,45 +3908,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f7de6663-35ae-4e13-8ba3-e412a35f72f7?api-version=2020-10-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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + string: '' headers: cache-control: - no-cache - content-length: - - '1271' - content-type: - - application/json date: - - Fri, 18 Dec 2020 08:56:59 GMT + - Fri, 15 Jan 2021 14:15: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' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3539,24 +3951,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","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-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmv43iv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmv43iv","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr/protectableItems/vm;iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr","name":"iaasvmcontainerv2;clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote;clitest-vmo4gkr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote/providers/Microsoft.Compute/virtualMachines/clitest-vmo4gkr","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgp65m3eofxri5atsrsm2uidpas6rb3fumsbng4gkhpy3fr6obfqwvhvv33jwa4eote","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmo4gkr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '6596' content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:01 GMT + - Fri, 15 Jan 2021 14:15:07 GMT expires: - '-1' pragma: @@ -3572,7 +3984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3598,28 +4010,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + 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-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2019-06-15 + - 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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:57:03 GMT + - Fri, 15 Jan 2021 14:15:08 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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2019-06-15 + - 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-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3627,7 +4039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3647,15 +4059,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3664,7 +4076,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:04 GMT + - Fri, 15 Jan 2021 14:15:09 GMT expires: - '-1' pragma: @@ -3680,7 +4092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '56' x-powered-by: - ASP.NET status: @@ -3700,15 +4112,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3717,7 +4129,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:05 GMT + - Fri, 15 Jan 2021 14:15:10 GMT expires: - '-1' pragma: @@ -3733,7 +4145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '55' x-powered-by: - ASP.NET status: @@ -3753,15 +4165,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3770,7 +4182,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:07 GMT + - Fri, 15 Jan 2021 14:15:12 GMT expires: - '-1' pragma: @@ -3786,7 +4198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '54' x-powered-by: - ASP.NET status: @@ -3806,15 +4218,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3823,7 +4235,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:08 GMT + - Fri, 15 Jan 2021 14:15:13 GMT expires: - '-1' pragma: @@ -3839,7 +4251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '53' x-powered-by: - ASP.NET status: @@ -3859,15 +4271,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3876,7 +4288,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:11 GMT + - Fri, 15 Jan 2021 14:15:14 GMT expires: - '-1' pragma: @@ -3892,7 +4304,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '52' x-powered-by: - ASP.NET status: @@ -3912,15 +4324,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3929,7 +4341,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:13 GMT + - Fri, 15 Jan 2021 14:15:15 GMT expires: - '-1' pragma: @@ -3945,7 +4357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '51' x-powered-by: - ASP.NET status: @@ -3965,15 +4377,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3982,7 +4394,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:14 GMT + - Fri, 15 Jan 2021 14:15:17 GMT expires: - '-1' pragma: @@ -3998,7 +4410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '50' x-powered-by: - ASP.NET status: @@ -4018,15 +4430,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4035,7 +4447,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:16 GMT + - Fri, 15 Jan 2021 14:15:18 GMT expires: - '-1' pragma: @@ -4051,7 +4463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '49' x-powered-by: - ASP.NET status: @@ -4071,15 +4483,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4088,7 +4500,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:18 GMT + - Fri, 15 Jan 2021 14:15:19 GMT expires: - '-1' pragma: @@ -4104,7 +4516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '48' x-powered-by: - ASP.NET status: @@ -4124,15 +4536,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4141,7 +4553,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:20 GMT + - Fri, 15 Jan 2021 14:15:21 GMT expires: - '-1' pragma: @@ -4157,7 +4569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '47' x-powered-by: - ASP.NET status: @@ -4177,15 +4589,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4194,7 +4606,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:21 GMT + - Fri, 15 Jan 2021 14:15:22 GMT expires: - '-1' pragma: @@ -4210,7 +4622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '46' x-powered-by: - ASP.NET status: @@ -4230,15 +4642,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4247,7 +4659,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:23 GMT + - Fri, 15 Jan 2021 14:15:23 GMT expires: - '-1' pragma: @@ -4263,7 +4675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '45' x-powered-by: - ASP.NET status: @@ -4283,15 +4695,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4300,7 +4712,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:24 GMT + - Fri, 15 Jan 2021 14:15:25 GMT expires: - '-1' pragma: @@ -4316,7 +4728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '44' x-powered-by: - ASP.NET status: @@ -4336,15 +4748,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4353,7 +4765,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:26 GMT + - Fri, 15 Jan 2021 14:15:27 GMT expires: - '-1' pragma: @@ -4369,7 +4781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '43' x-powered-by: - ASP.NET status: @@ -4389,15 +4801,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4406,7 +4818,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:27 GMT + - Fri, 15 Jan 2021 14:15:28 GMT expires: - '-1' pragma: @@ -4422,7 +4834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '42' x-powered-by: - ASP.NET status: @@ -4442,15 +4854,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4459,7 +4871,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:29 GMT + - Fri, 15 Jan 2021 14:15:29 GMT expires: - '-1' pragma: @@ -4475,7 +4887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '41' x-powered-by: - ASP.NET status: @@ -4495,15 +4907,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4512,7 +4924,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:30 GMT + - Fri, 15 Jan 2021 14:15:31 GMT expires: - '-1' pragma: @@ -4528,7 +4940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '40' x-powered-by: - ASP.NET status: @@ -4548,15 +4960,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4565,7 +4977,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:32 GMT + - Fri, 15 Jan 2021 14:15:32 GMT expires: - '-1' pragma: @@ -4581,7 +4993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '39' x-powered-by: - ASP.NET status: @@ -4601,15 +5013,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"InProgress","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4618,7 +5030,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:33 GMT + - Fri, 15 Jan 2021 14:15:33 GMT expires: - '-1' pragma: @@ -4634,7 +5046,60 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '38' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 + response: + body: + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"InProgress","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '37' x-powered-by: - ASP.NET status: @@ -4654,15 +5119,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5e5fdaaa-9345-44d1-872e-d39fb9ee74de?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0db0f65-39db-471f-a158-80dd77d6c200?api-version=2020-10-01 response: body: - string: '{"id":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","name":"5e5fdaaa-9345-44d1-872e-d39fb9ee74de","status":"Succeeded","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"2020-12-18T08:57:03.5198985Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"54252671-c6fe-4f0e-a39d-9b35cecbb369"}}' + string: '{"id":"e0db0f65-39db-471f-a158-80dd77d6c200","name":"e0db0f65-39db-471f-a158-80dd77d6c200","status":"Succeeded","startTime":"2021-01-15T14:15:08.9349416Z","endTime":"2021-01-15T14:15:08.9349416Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c87cd570-91d5-4567-825b-9f5f30dc631a"}}' headers: cache-control: - no-cache @@ -4671,7 +5136,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:35 GMT + - Fri, 15 Jan 2021 14:15:40 GMT expires: - '-1' pragma: @@ -4687,7 +5152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '36' x-powered-by: - ASP.NET status: @@ -4707,16 +5172,16 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/54252671-c6fe-4f0e-a39d-9b35cecbb369?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c87cd570-91d5-4567-825b-9f5f30dc631a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/54252671-c6fe-4f0e-a39d-9b35cecbb369","name":"54252671-c6fe-4f0e-a39d-9b35cecbb369","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30.7804345S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T08:57:03.5198985Z","endTime":"2020-12-18T08:57:34.300333Z","activityId":"f8e56ca0-410e-11eb-b28e-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c87cd570-91d5-4567-825b-9f5f30dc631a","name":"c87cd570-91d5-4567-825b-9f5f30dc631a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30.8263097S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:15:08.9399393Z","endTime":"2021-01-15T14:15:39.766249Z","activityId":"0a52654b-573c-11eb-a239-c8f750f92764"}}' headers: cache-control: - no-cache @@ -4725,7 +5190,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:37 GMT + - Fri, 15 Jan 2021 14:15:40 GMT expires: - '-1' pragma: @@ -4742,7 +5207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -4762,15 +5227,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":2}}' + 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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":2}}' headers: cache-control: - no-cache @@ -4779,7 +5244,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:38 GMT + - Fri, 15 Jan 2021 14:15:41 GMT expires: - '-1' pragma: @@ -4804,9 +5269,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 2, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-12-18T18:30:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-16T00:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-12-18T18:30:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-16T00:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": "UTC"}}' headers: @@ -4825,15 +5290,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-item000007?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30: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/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -4842,7 +5307,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:41 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -4858,7 +5323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -4878,12 +5343,12 @@ interactions: ParameterSetName: - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -4895,7 +5360,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:42 GMT + - Fri, 15 Jan 2021 14:15:43 GMT expires: - '-1' pragma: @@ -4931,12 +5396,12 @@ interactions: ParameterSetName: - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%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-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' @@ -4948,7 +5413,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:44 GMT + - Fri, 15 Jan 2021 14:15:43 GMT expires: - '-1' pragma: @@ -4964,7 +5429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -4984,15 +5449,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5001,7 +5466,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:47 GMT + - Fri, 15 Jan 2021 14:15:43 GMT expires: - '-1' pragma: @@ -5017,7 +5482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -5037,12 +5502,12 @@ interactions: ParameterSetName: - --backup-management-type -n -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -5054,7 +5519,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:48 GMT + - Fri, 15 Jan 2021 14:15:44 GMT expires: - '-1' pragma: @@ -5090,15 +5555,15 @@ interactions: ParameterSetName: - --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5107,7 +5572,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:51 GMT + - Fri, 15 Jan 2021 14:16:27 GMT expires: - '-1' pragma: @@ -5143,15 +5608,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"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":"2260842198987865464","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"}}' + string: '{"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":"2260877382397178369","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"}}' headers: cache-control: - no-cache @@ -5160,7 +5625,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:52 GMT + - Fri, 15 Jan 2021 14:16:27 GMT expires: - '-1' pragma: @@ -5196,15 +5661,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5213,7 +5678,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:54 GMT + - Fri, 15 Jan 2021 14:16:28 GMT expires: - '-1' pragma: @@ -5229,7 +5694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -5249,15 +5714,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5266,7 +5731,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:57 GMT + - Fri, 15 Jan 2021 14:16:29 GMT expires: - '-1' pragma: @@ -5282,7 +5747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -5302,15 +5767,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5319,7 +5784,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:57:58 GMT + - Fri, 15 Jan 2021 14:16:29 GMT expires: - '-1' pragma: @@ -5335,7 +5800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -5355,15 +5820,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5372,7 +5837,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:01 GMT + - Fri, 15 Jan 2021 14:16:29 GMT expires: - '-1' pragma: @@ -5388,7 +5853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -5408,15 +5873,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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"}}]}' headers: cache-control: - no-cache @@ -5425,7 +5890,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:01 GMT + - Fri, 15 Jan 2021 14:16:31 GMT expires: - '-1' pragma: @@ -5441,7 +5906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -5461,15 +5926,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000007?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30: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/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -5478,7 +5943,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:04 GMT + - Fri, 15 Jan 2021 14:16:30 GMT expires: - '-1' pragma: @@ -5520,41 +5985,147 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2019-06-15 + - 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/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:58:06 GMT + - Fri, 15 Jan 2021 14:16: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2019-06-15 + - 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/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-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 item set-policy + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -n -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 + response: + body: + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -n -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 + response: + body: + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5569,15 +6140,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5586,7 +6157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:07 GMT + - Fri, 15 Jan 2021 14:16:35 GMT expires: - '-1' pragma: @@ -5602,7 +6173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -5622,15 +6193,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5639,7 +6210,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:09 GMT + - Fri, 15 Jan 2021 14:16:36 GMT expires: - '-1' pragma: @@ -5655,7 +6226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -5675,15 +6246,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5692,7 +6263,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:10 GMT + - Fri, 15 Jan 2021 14:16:37 GMT expires: - '-1' pragma: @@ -5708,7 +6279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -5728,15 +6299,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5745,7 +6316,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:13 GMT + - Fri, 15 Jan 2021 14:16:39 GMT expires: - '-1' pragma: @@ -5761,7 +6332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -5781,15 +6352,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5798,7 +6369,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:14 GMT + - Fri, 15 Jan 2021 14:16:40 GMT expires: - '-1' pragma: @@ -5814,7 +6385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -5834,15 +6405,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5851,7 +6422,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:16 GMT + - Fri, 15 Jan 2021 14:16:41 GMT expires: - '-1' pragma: @@ -5867,7 +6438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -5887,15 +6458,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"InProgress","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"InProgress","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5904,7 +6475,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:17 GMT + - Fri, 15 Jan 2021 14:16:42 GMT expires: - '-1' pragma: @@ -5920,7 +6491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -5940,15 +6511,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a76be003-122b-4a23-8d9b-0dc68e6048f4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4743b688-7467-48a5-9a44-0eb92811e0bc?api-version=2020-10-01 response: body: - string: '{"id":"a76be003-122b-4a23-8d9b-0dc68e6048f4","name":"a76be003-122b-4a23-8d9b-0dc68e6048f4","status":"Succeeded","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"2020-12-18T08:58:06.5060642Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7b3cf108-340e-4c7b-aaa8-664cd2fea6ea"}}' + string: '{"id":"4743b688-7467-48a5-9a44-0eb92811e0bc","name":"4743b688-7467-48a5-9a44-0eb92811e0bc","status":"Succeeded","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"2021-01-15T14:16:32.3402297Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"64ffc028-11ab-4b9c-b496-fbf85af4b18a"}}' headers: cache-control: - no-cache @@ -5957,7 +6528,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:19 GMT + - Fri, 15 Jan 2021 14:16:44 GMT expires: - '-1' pragma: @@ -5973,7 +6544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -5993,16 +6564,16 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7b3cf108-340e-4c7b-aaa8-664cd2fea6ea?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64ffc028-11ab-4b9c-b496-fbf85af4b18a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7b3cf108-340e-4c7b-aaa8-664cd2fea6ea","name":"7b3cf108-340e-4c7b-aaa8-664cd2fea6ea","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.0960772S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"clitest-item000007"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T08:58:06.5060642Z","endTime":"2020-12-18T08:58:17.6021414Z","activityId":"21a5712f-410f-11eb-b511-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64ffc028-11ab-4b9c-b496-fbf85af4b18a","name":"64ffc028-11ab-4b9c-b496-fbf85af4b18a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.9277352S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"clitest-item000007"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:16:32.3402297Z","endTime":"2021-01-15T14:16:43.2679649Z","activityId":"438e0483-573c-11eb-84e5-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6011,7 +6582,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:21 GMT + - Fri, 15 Jan 2021 14:16:44 GMT expires: - '-1' pragma: @@ -6048,15 +6619,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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/clitest-item000007","policyName":"clitest-item000007"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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/clitest-item000007","policyName":"clitest-item000007"}}]}' headers: cache-control: - no-cache @@ -6065,7 +6636,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:21 GMT + - Fri, 15 Jan 2021 14:16:45 GMT expires: - '-1' pragma: @@ -6081,7 +6652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -6101,12 +6672,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}},{"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"}}]}' @@ -6118,7 +6689,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:23 GMT + - Fri, 15 Jan 2021 14:16:45 GMT expires: - '-1' pragma: @@ -6154,15 +6725,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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/clitest-item000007","policyName":"clitest-item000007"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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/clitest-item000007","policyName":"clitest-item000007"}}]}' headers: cache-control: - no-cache @@ -6171,7 +6742,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:25 GMT + - Fri, 15 Jan 2021 14:16:45 GMT expires: - '-1' pragma: @@ -6187,7 +6758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -6208,15 +6779,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260842198987865464","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/clitest-item000007","policyName":"clitest-item000007"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"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":"2260877382397178369","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/clitest-item000007","policyName":"clitest-item000007"}}]}' headers: cache-control: - no-cache @@ -6225,7 +6796,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:27 GMT + - Fri, 15 Jan 2021 14:16:46 GMT expires: - '-1' pragma: @@ -6241,7 +6812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -6264,28 +6835,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + 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-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:58:29 GMT + - Fri, 15 Jan 2021 14:16:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6314,15 +6885,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6331,7 +6902,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:31 GMT + - Fri, 15 Jan 2021 14:16:47 GMT expires: - '-1' pragma: @@ -6368,15 +6939,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6385,7 +6956,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:33 GMT + - Fri, 15 Jan 2021 14:16:48 GMT expires: - '-1' pragma: @@ -6422,15 +6993,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6439,7 +7010,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:34 GMT + - Fri, 15 Jan 2021 14:16:49 GMT expires: - '-1' pragma: @@ -6476,15 +7047,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6493,7 +7064,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:36 GMT + - Fri, 15 Jan 2021 14:16:51 GMT expires: - '-1' pragma: @@ -6530,15 +7101,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6547,7 +7118,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:37 GMT + - Fri, 15 Jan 2021 14:16:52 GMT expires: - '-1' pragma: @@ -6584,15 +7155,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"InProgress","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6601,7 +7172,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:39 GMT + - Fri, 15 Jan 2021 14:16:53 GMT expires: - '-1' pragma: @@ -6638,24 +7209,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4a5caca3-5e92-4017-ac83-67be296efa04?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"4a5caca3-5e92-4017-ac83-67be296efa04","name":"4a5caca3-5e92-4017-ac83-67be296efa04","status":"Succeeded","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"2020-12-18T08:58:29.9122014Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1a9274c3-bdac-4868-9649-58bf0d29ef6c"}}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:40 GMT + - Fri, 15 Jan 2021 14:16:55 GMT expires: - '-1' pragma: @@ -6692,31 +7263,83 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/1a9274c3-bdac-4868-9649-58bf0d29ef6c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1a9274c3-bdac-4868-9649-58bf0d29ef6c","name":"1a9274c3-bdac-4868-9649-58bf0d29ef6c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.1624269S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T08:58:29.9122014Z","endTime":"2020-12-18T08:58:41.0746283Z","activityId":"3069e6b3-410f-11eb-b08b-c03eba45757e"}}' + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"InProgress","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '971' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:42 GMT + - Fri, 15 Jan 2021 14:16: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9ff34a36-3b60-4fb9-ac6f-932d8310c4db?api-version=2020-10-01 + response: + body: + string: '{"id":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","name":"9ff34a36-3b60-4fb9-ac6f-932d8310c4db","status":"Succeeded","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"2021-01-15T14:16:47.1402391Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2e610c6d-5be0-46f7-996f-3f24f31406e2"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -6727,7 +7350,63 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/2e610c6d-5be0-46f7-996f-3f24f31406e2?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2e610c6d-5be0-46f7-996f-3f24f31406e2","name":"2e610c6d-5be0-46f7-996f-3f24f31406e2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.0842839S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:16:47.1402391Z","endTime":"2021-01-15T14:16:58.224523Z","activityId":"4cc47765-573c-11eb-8fad-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '970' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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: + - '147' x-powered-by: - ASP.NET status: @@ -6747,15 +7426,15 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:29.9122014Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:44.7101109"}},{"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":"2260842198987865464","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/clitest-item000007","policyName":"clitest-item000007"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:16:47.1402391Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:47.6324258"}},{"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":"2260877382397178369","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/clitest-item000007","policyName":"clitest-item000007"}}]}' headers: cache-control: - no-cache @@ -6764,7 +7443,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:45 GMT + - Fri, 15 Jan 2021 14:16:58 GMT expires: - '-1' pragma: @@ -6780,7 +7459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6801,15 +7480,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:29.9122014Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:43.0354456"}},{"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":"2260842198987865464","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/clitest-item000007","policyName":"clitest-item000007"}}]}' + 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-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382238807113","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:16:47.1402391Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:47.2217776"}},{"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":"2260877382397178369","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/clitest-item000007","policyName":"clitest-item000007"}}]}' headers: cache-control: - no-cache @@ -6818,7 +7497,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:46 GMT + - Fri, 15 Jan 2021 14:16:59 GMT expires: - '-1' pragma: @@ -6834,7 +7513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -6857,28 +7536,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 08:58:48 GMT + - Fri, 15 Jan 2021 14:17:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6907,15 +7586,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6924,7 +7603,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:50 GMT + - Fri, 15 Jan 2021 14:17:00 GMT expires: - '-1' pragma: @@ -6940,7 +7619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -6961,15 +7640,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6978,7 +7657,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:51 GMT + - Fri, 15 Jan 2021 14:17:01 GMT expires: - '-1' pragma: @@ -6994,7 +7673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -7015,15 +7694,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7032,7 +7711,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:53 GMT + - Fri, 15 Jan 2021 14:17:02 GMT expires: - '-1' pragma: @@ -7048,7 +7727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: @@ -7069,15 +7748,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7086,7 +7765,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:54 GMT + - Fri, 15 Jan 2021 14:17:03 GMT expires: - '-1' pragma: @@ -7102,7 +7781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '133' x-powered-by: - ASP.NET status: @@ -7123,15 +7802,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7140,7 +7819,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:56 GMT + - Fri, 15 Jan 2021 14:17:05 GMT expires: - '-1' pragma: @@ -7156,7 +7835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '131' x-powered-by: - ASP.NET status: @@ -7177,15 +7856,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7194,7 +7873,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:57 GMT + - Fri, 15 Jan 2021 14:17:06 GMT expires: - '-1' pragma: @@ -7210,7 +7889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '129' x-powered-by: - ASP.NET status: @@ -7231,15 +7910,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"InProgress","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7248,7 +7927,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:58:59 GMT + - Fri, 15 Jan 2021 14:17:07 GMT expires: - '-1' pragma: @@ -7264,7 +7943,115 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 + response: + body: + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:17: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 + response: + body: + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"InProgress","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:17: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: + - '123' x-powered-by: - ASP.NET status: @@ -7285,15 +8072,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/dd07caba-9878-4ba1-9e62-84f2c134fb82?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4814578-c67d-482a-a6b3-7c2351fc3d55?api-version=2020-10-01 response: body: - string: '{"id":"dd07caba-9878-4ba1-9e62-84f2c134fb82","name":"dd07caba-9878-4ba1-9e62-84f2c134fb82","status":"Succeeded","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"2020-12-18T08:58:48.8256655Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f286948d-c046-4e48-9f02-0c7854f3b39b"}}' + string: '{"id":"e4814578-c67d-482a-a6b3-7c2351fc3d55","name":"e4814578-c67d-482a-a6b3-7c2351fc3d55","status":"Succeeded","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"2021-01-15T14:17:00.4353631Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ad9af857-1e09-48c1-b8dc-ead5fafb8156"}}' headers: cache-control: - no-cache @@ -7302,7 +8089,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:59:00 GMT + - Fri, 15 Jan 2021 14:17:12 GMT expires: - '-1' pragma: @@ -7318,7 +8105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '121' x-powered-by: - ASP.NET status: @@ -7339,25 +8126,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f286948d-c046-4e48-9f02-0c7854f3b39b?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad9af857-1e09-48c1-b8dc-ead5fafb8156?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f286948d-c046-4e48-9f02-0c7854f3b39b","name":"f286948d-c046-4e48-9f02-0c7854f3b39b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.2145495S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T08:58:48.8256655Z","endTime":"2020-12-18T08:59:00.040215Z","activityId":"3bd5bcc8-410f-11eb-a07f-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ad9af857-1e09-48c1-b8dc-ead5fafb8156","name":"ad9af857-1e09-48c1-b8dc-ead5fafb8156","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.1589635S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:17:00.4353631Z","endTime":"2021-01-15T14:17:11.5943266Z","activityId":"54b1b597-573c-11eb-8675-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '970' + - '971' content-type: - application/json date: - - Fri, 18 Dec 2020 08:59:02 GMT + - Fri, 15 Jan 2021 14:17:13 GMT expires: - '-1' pragma: @@ -7374,7 +8161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -7396,8 +8183,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -7422,7 +8209,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:59:06 GMT + - Fri, 15 Jan 2021 14:17:14 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_job.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_job.yaml index 64b3701f217..8489a61de85 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_job.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_job.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T08%3A59%3A23.2409251Z''\"","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-01-15T14%3A21%3A10.6032135Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 08:59:24 GMT + - Fri, 15 Jan 2021 14:21:11 GMT expires: - '-1' pragma: @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T08:59:11Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:59:25 GMT + - Fri, 15 Jan 2021 14:21:11 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 08:59:26 GMT + - Fri, 15 Jan 2021 14:21:12 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 09:04:26 GMT + - Fri, 15 Jan 2021 14:26:12 GMT source-age: - - '249' + - '185' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - MISS, HIT + - HIT, HIT x-cache-hits: - - 0, 1 + - 1, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 435e7aef373c8ad223356c52c278a3fbe0928f6e + - f6f3ecd493afb427d00edb08e61187e9cd54cc3b x-frame-options: - deny x-github-request-id: - - 39E0:1ECA:12AF2:1B5F1:5FDC5F93 + - 6C9A:5FEB:DAEB8:E6B82:6001A2BD x-served-by: - - cache-mia11332-MIA + - cache-sin18050-SIN x-timer: - - S1608281966.060706,VS0,VE24 + - S1610720472.138333,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:59:26 GMT + - Fri, 15 Jan 2021 14:21:12 GMT expires: - '-1' pragma: @@ -293,29 +290,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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: '{"error":{"code":"InternalServerError","message":"Encountered internal - server error. Diagnostic information: timestamp ''20201218T085929Z'', subscription - id ''a1bfa635-f2bf-42f1-86b5-848c674fc321'', tracking id ''f23defaf-b312-4b9c-97c4-6205adead02f'', - request correlation id ''f23defaf-b312-4b9c-97c4-6205adead02f''."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_z0QwaCrrvRWtxbNNC4yt8yWR9S64tMWJ","name":"vm_deploy_z0QwaCrrvRWtxbNNC4yt8yWR9S64tMWJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1442692875832661387","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:21:13.9108379Z","duration":"PT1.1490774S","correlationId":"1aac4d5b-84ce-41b5-a01c-78cb701ab4d7","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_z0QwaCrrvRWtxbNNC4yt8yWR9S64tMWJ/operationStatuses/08585908864127158881?api-version=2020-10-01 cache-control: - no-cache - connection: - - close content-length: - - '312' + - '2960' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:59:28 GMT + - Fri, 15 Jan 2021 14:21:14 GMT expires: - '-1' pragma: @@ -324,51 +318,13 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 500 - message: Internal Server Error + code: 201 + message: Created - 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": "2020-06-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"}]}, - "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"}}' + body: null headers: Accept: - application/json @@ -378,46 +334,38 @@ interactions: - vm create Connection: - keep-alive - Content-Length: - - '3807' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - 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 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908864127158881?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_pG1Qko15yzob9bvN9dShmlwfcnQ94iLv","name":"vm_deploy_pG1Qko15yzob9bvN9dShmlwfcnQ94iLv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16929054659053774796","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T08:59:35.9977889Z","duration":"PT3.3340951S","correlationId":"12bd02a0-0b05-4644-aa7a-c0e650ab176c","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"}]}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_pG1Qko15yzob9bvN9dShmlwfcnQ94iLv/operationStatuses/08585933249128139364?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2961' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 08:59:37 GMT + - Fri, 15 Jan 2021 14:21:43 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -432,10 +380,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933249128139364?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908864127158881?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -447,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:09 GMT + - Fri, 15 Jan 2021 14:22:14 GMT expires: - '-1' pragma: @@ -475,10 +423,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933249128139364?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908864127158881?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -490,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:39 GMT + - Fri, 15 Jan 2021 14:22:44 GMT expires: - '-1' pragma: @@ -518,13 +466,13 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_pG1Qko15yzob9bvN9dShmlwfcnQ94iLv","name":"vm_deploy_pG1Qko15yzob9bvN9dShmlwfcnQ94iLv","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16929054659053774796","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T09:00:33.0614316Z","duration":"PT1M0.3977378S","correlationId":"12bd02a0-0b05-4644-aa7a-c0e650ab176c","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_z0QwaCrrvRWtxbNNC4yt8yWR9S64tMWJ","name":"vm_deploy_z0QwaCrrvRWtxbNNC4yt8yWR9S64tMWJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1442692875832661387","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:22:43.7709971Z","duration":"PT1M31.0092366S","correlationId":"1aac4d5b-84ce-41b5-a01c-78cb701ab4d7","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 @@ -533,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:40 GMT + - Fri, 15 Jan 2021 14:22:44 GMT expires: - '-1' pragma: @@ -561,7 +509,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -570,16 +518,16 @@ interactions: \ \"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\": \"0aca31c6-7f7a-4030-998a-4eebafc3b799\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"76941f73-56c7-41c6-ad62-0b6785b1c43f\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_719e2eb780d24c4cb088185baebb1cbf\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\",\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_disk1_719e2eb780d24c4cb088185baebb1cbf\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\"\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\": @@ -593,16 +541,16 @@ interactions: \ {\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\": \"2020-12-18T09:00:42+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:22:46+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_719e2eb780d24c4cb088185baebb1cbf\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T09:00:05.8624843+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:21:26.8131505+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T09:00:30.7534581+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:22:40.656321+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}" @@ -610,11 +558,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3427' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:41 GMT + - Fri, 15 Jan 2021 14:22:46 GMT expires: - '-1' pragma: @@ -631,7 +579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31975 + - Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31835 status: code: 200 message: OK @@ -639,7 +587,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -649,23 +597,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"b7d14ad6-1944-431d-9d09-e411456d6a0b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"871eed15-fa06-42ab-90f4-2039e4ff0f16\\\"\",\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\": \"18117382-d0fe-49fa-973a-b1083c871cf0\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7d56d0f4-55ba-4fc5-9f9b-a15b4d797188\",\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/\\\"b7d14ad6-1944-431d-9d09-e411456d6a0b\\\"\",\r\n + \ \"etag\": \"W/\\\"871eed15-fa06-42ab-90f4-2039e4ff0f16\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -674,8 +619,8 @@ interactions: \ },\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\": - \"tq4ejphd5qoulpkp0mp03mumve.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-55-94-B9\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"atnpd23hnnhetopea2jcrytumg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-55-7E-8F\",\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\": @@ -689,9 +634,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:43 GMT + - Fri, 15 Jan 2021 14:22:45 GMT etag: - - W/"b7d14ad6-1944-431d-9d09-e411456d6a0b" + - W/"871eed15-fa06-42ab-90f4-2039e4ff0f16" expires: - '-1' pragma: @@ -708,7 +653,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b179927-1350-4ca5-b2db-c308b6fc3bc1 + - ba075cad-cfc4-49f0-b415-1977d9939f19 status: code: 200 message: OK @@ -716,7 +661,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -726,22 +671,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"b7b97a79-fbd2-4b42-8f6f-39d7d48dba5b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cc4686a6-2ac3-4b6a-aa14-7eddf4f3a326\\\"\",\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\": \"02121c66-0fec-4389-bc23-d39e334fabc9\",\r\n - \ \"ipAddress\": \"104.215.137.15\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"82f29108-fe14-43d3-b075-4f71643f8480\",\r\n + \ \"ipAddress\": \"13.76.230.71\",\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}" @@ -749,13 +691,13 @@ interactions: cache-control: - no-cache content-length: - - '1183' + - '1181' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:43 GMT + - Fri, 15 Jan 2021 14:22:45 GMT etag: - - W/"b7b97a79-fbd2-4b42-8f6f-39d7d48dba5b" + - W/"cc4686a6-2ac3-4b6a-aa14-7eddf4f3a326" expires: - '-1' pragma: @@ -772,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c63009eb-12e1-4f85-8bac-03ebe69086a7 + - d32857d3-035e-4c40-bd15-691c0e9996c8 status: code: 200 message: OK @@ -790,7 +732,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -799,16 +741,16 @@ interactions: \ \"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\": \"0aca31c6-7f7a-4030-998a-4eebafc3b799\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"76941f73-56c7-41c6-ad62-0b6785b1c43f\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_719e2eb780d24c4cb088185baebb1cbf\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\",\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_disk1_719e2eb780d24c4cb088185baebb1cbf\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\"\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\": @@ -822,16 +764,16 @@ interactions: \ {\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\": \"2020-12-18T09:00:44+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:22:47+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_719e2eb780d24c4cb088185baebb1cbf\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_b17cd8700f3c4bb58e7c3fa382b5a2d5\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T09:00:05.8624843+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:21:26.8131505+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T09:00:30.7534581+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:22:40.656321+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}" @@ -839,11 +781,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3427' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 09:00:43 GMT + - Fri, 15 Jan 2021 14:22:46 GMT expires: - '-1' pragma: @@ -860,7 +802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31974 + - Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31834 status: code: 200 message: OK @@ -878,15 +820,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T08%3A59%3A23.2409251Z''\"","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-01-15T14%3A21%3A10.6032135Z''\"","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 @@ -895,7 +837,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:00:46 GMT + - Fri, 15 Jan 2021 14:22:47 GMT expires: - '-1' pragma: @@ -927,15 +869,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T18:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T18:30: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -944,7 +886,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:00:47 GMT + - Fri, 15 Jan 2021 14:22:47 GMT expires: - '-1' pragma: @@ -980,24 +922,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2816' content-type: - application/json date: - - Fri, 18 Dec 2020 09:00:49 GMT + - Fri, 15 Jan 2021 14:22:48 GMT expires: - '-1' pragma: @@ -1035,28 +977,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?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/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 09:00:52 GMT + - Fri, 15 Jan 2021 14:22:49 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1084,12 +1026,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1099,11 +1041,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:00:54 GMT + - Fri, 15 Jan 2021 14:22: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/operationResults/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1111,7 +1053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -1131,12 +1073,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1146,11 +1088,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:00:55 GMT + - Fri, 15 Jan 2021 14:22: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/operationResults/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1158,7 +1100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -1178,12 +1120,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1193,11 +1135,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:00:57 GMT + - Fri, 15 Jan 2021 14:22: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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1205,7 +1147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -1225,12 +1167,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1240,11 +1182,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:00:58 GMT + - Fri, 15 Jan 2021 14:22: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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1252,7 +1194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -1272,12 +1214,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1287,11 +1229,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:01:00 GMT + - Fri, 15 Jan 2021 14:22: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/operationResults/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1299,7 +1241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: @@ -1319,12 +1261,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1334,11 +1276,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:01:01 GMT + - Fri, 15 Jan 2021 14:22: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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1346,7 +1288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: @@ -1366,12 +1308,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' @@ -1381,11 +1323,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 09:01:03 GMT + - Fri, 15 Jan 2021 14:22: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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1393,7 +1335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '134' x-powered-by: - ASP.NET status: @@ -1413,22 +1355,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/67eb0d9f-525c-4598-9b84-7e2e9c766e1b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 09:01:04 GMT + - Fri, 15 Jan 2021 14:22: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/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1436,7 +1382,50 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '133' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/162ab7c7-7e8d-4b54-b85a-340147940bcb?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 15 Jan 2021 14:23:01 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: + - '132' x-powered-by: - ASP.NET status: @@ -1456,24 +1445,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-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/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"}}]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","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;clitest.rg7e4j4cmde64dtsnjtwlirk4ihbtuzwgjl6hk4ubzvexutsr7q45hk4vjkr52kbbim;clitest-vm7r2nk/protectableItems/vm;iaasvmcontainerv2;clitest.rg7e4j4cmde64dtsnjtwlirk4ihbtuzwgjl6hk4ubzvexutsr7q45hk4vjkr52kbbim;clitest-vm7r2nk","name":"iaasvmcontainerv2;clitest.rg7e4j4cmde64dtsnjtwlirk4ihbtuzwgjl6hk4ubzvexutsr7q45hk4vjkr52kbbim;clitest-vm7r2nk","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7e4j4cmde64dtsnjtwlirk4ihbtuzwgjl6hk4ubzvexutsr7q45hk4vjkr52kbbim/providers/Microsoft.Compute/virtualMachines/clitest-vm7r2nk","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg7e4j4cmde64dtsnjtwlirk4ihbtuzwgjl6hk4ubzvexutsr7q45hk4vjkr52kbbim","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm7r2nk","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg7jibxzleazua36sadlbumxfujopgcbo45zkeod5vzbqq7hoybhhlqmat45zzetmgs;clitest-vmzwrux/protectableItems/vm;iaasvmcontainerv2;clitest.rg7jibxzleazua36sadlbumxfujopgcbo45zkeod5vzbqq7hoybhhlqmat45zzetmgs;clitest-vmzwrux","name":"iaasvmcontainerv2;clitest.rg7jibxzleazua36sadlbumxfujopgcbo45zkeod5vzbqq7hoybhhlqmat45zzetmgs;clitest-vmzwrux","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7jibxzleazua36sadlbumxfujopgcbo45zkeod5vzbqq7hoybhhlqmat45zzetmgs/providers/Microsoft.Compute/virtualMachines/clitest-vmzwrux","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg7jibxzleazua36sadlbumxfujopgcbo45zkeod5vzbqq7hoybhhlqmat45zzetmgs","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmzwrux","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgecbaqxlkzisqjg2oulr7r4nw2ekz5zboi3vhq4w7qrh23pt4irnvp6uxtm5zvlywr;clitest-vm72kis/protectableItems/vm;iaasvmcontainerv2;clitest.rgecbaqxlkzisqjg2oulr7r4nw2ekz5zboi3vhq4w7qrh23pt4irnvp6uxtm5zvlywr;clitest-vm72kis","name":"iaasvmcontainerv2;clitest.rgecbaqxlkzisqjg2oulr7r4nw2ekz5zboi3vhq4w7qrh23pt4irnvp6uxtm5zvlywr;clitest-vm72kis","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgecbaqxlkzisqjg2oulr7r4nw2ekz5zboi3vhq4w7qrh23pt4irnvp6uxtm5zvlywr/providers/Microsoft.Compute/virtualMachines/clitest-vm72kis","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgecbaqxlkzisqjg2oulr7r4nw2ekz5zboi3vhq4w7qrh23pt4irnvp6uxtm5zvlywr","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm72kis","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rggxc6xwxm3mopxyp7q5e7jtu4m3xuvyltm6swbbltpws637eqcqsud7fc72wcslt4l;clitest-vmthjvo/protectableItems/vm;iaasvmcontainerv2;clitest.rggxc6xwxm3mopxyp7q5e7jtu4m3xuvyltm6swbbltpws637eqcqsud7fc72wcslt4l;clitest-vmthjvo","name":"iaasvmcontainerv2;clitest.rggxc6xwxm3mopxyp7q5e7jtu4m3xuvyltm6swbbltpws637eqcqsud7fc72wcslt4l;clitest-vmthjvo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggxc6xwxm3mopxyp7q5e7jtu4m3xuvyltm6swbbltpws637eqcqsud7fc72wcslt4l/providers/Microsoft.Compute/virtualMachines/clitest-vmthjvo","virtualMachineVersion":"Compute","resourceGroup":"clitest.rggxc6xwxm3mopxyp7q5e7jtu4m3xuvyltm6swbbltpws637eqcqsud7fc72wcslt4l","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmthjvo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgi2tmttmhcp5emrthx4sv7ygwi5jchlbdiejdvbitf7dmczrej3ojsb7cdhmljwgnx;clitest-vmhlayx/protectableItems/vm;iaasvmcontainerv2;clitest.rgi2tmttmhcp5emrthx4sv7ygwi5jchlbdiejdvbitf7dmczrej3ojsb7cdhmljwgnx;clitest-vmhlayx","name":"iaasvmcontainerv2;clitest.rgi2tmttmhcp5emrthx4sv7ygwi5jchlbdiejdvbitf7dmczrej3ojsb7cdhmljwgnx;clitest-vmhlayx","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi2tmttmhcp5emrthx4sv7ygwi5jchlbdiejdvbitf7dmczrej3ojsb7cdhmljwgnx/providers/Microsoft.Compute/virtualMachines/clitest-vmhlayx","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgi2tmttmhcp5emrthx4sv7ygwi5jchlbdiejdvbitf7dmczrej3ojsb7cdhmljwgnx","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmhlayx","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '10376' content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:06 GMT + - Fri, 15 Jan 2021 14:23:01 GMT expires: - '-1' pragma: @@ -1489,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1515,28 +1504,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2019-06-15 + - 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/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 09:01:09 GMT + - Fri, 15 Jan 2021 14:23: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2019-06-15 + - 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/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1544,7 +1533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -1564,15 +1553,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1581,7 +1570,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:10 GMT + - Fri, 15 Jan 2021 14:23:03 GMT expires: - '-1' pragma: @@ -1617,15 +1606,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1634,7 +1623,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:12 GMT + - Fri, 15 Jan 2021 14:23:04 GMT expires: - '-1' pragma: @@ -1670,15 +1659,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1687,7 +1676,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:14 GMT + - Fri, 15 Jan 2021 14:23:05 GMT expires: - '-1' pragma: @@ -1723,15 +1712,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1740,7 +1729,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:15 GMT + - Fri, 15 Jan 2021 14:23:07 GMT expires: - '-1' pragma: @@ -1776,15 +1765,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1793,7 +1782,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:17 GMT + - Fri, 15 Jan 2021 14:23:09 GMT expires: - '-1' pragma: @@ -1829,15 +1818,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1846,7 +1835,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:18 GMT + - Fri, 15 Jan 2021 14:23:10 GMT expires: - '-1' pragma: @@ -1882,15 +1871,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1899,7 +1888,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:20 GMT + - Fri, 15 Jan 2021 14:23:12 GMT expires: - '-1' pragma: @@ -1935,15 +1924,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1952,7 +1941,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:21 GMT + - Fri, 15 Jan 2021 14:23:13 GMT expires: - '-1' pragma: @@ -1988,15 +1977,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2005,7 +1994,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:23 GMT + - Fri, 15 Jan 2021 14:23:14 GMT expires: - '-1' pragma: @@ -2041,15 +2030,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2058,7 +2047,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:24 GMT + - Fri, 15 Jan 2021 14:23:15 GMT expires: - '-1' pragma: @@ -2094,15 +2083,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2111,7 +2100,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:26 GMT + - Fri, 15 Jan 2021 14:23:17 GMT expires: - '-1' pragma: @@ -2147,15 +2136,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2164,7 +2153,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:27 GMT + - Fri, 15 Jan 2021 14:23:18 GMT expires: - '-1' pragma: @@ -2200,15 +2189,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2217,7 +2206,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:29 GMT + - Fri, 15 Jan 2021 14:23:19 GMT expires: - '-1' pragma: @@ -2253,15 +2242,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2270,7 +2259,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:30 GMT + - Fri, 15 Jan 2021 14:23:20 GMT expires: - '-1' pragma: @@ -2306,15 +2295,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2323,7 +2312,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:32 GMT + - Fri, 15 Jan 2021 14:23:22 GMT expires: - '-1' pragma: @@ -2359,15 +2348,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2376,7 +2365,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:33 GMT + - Fri, 15 Jan 2021 14:23:23 GMT expires: - '-1' pragma: @@ -2412,15 +2401,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2429,7 +2418,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:35 GMT + - Fri, 15 Jan 2021 14:23:24 GMT expires: - '-1' pragma: @@ -2465,15 +2454,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2482,7 +2471,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:36 GMT + - Fri, 15 Jan 2021 14:23:26 GMT expires: - '-1' pragma: @@ -2518,15 +2507,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2535,7 +2524,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:38 GMT + - Fri, 15 Jan 2021 14:23:27 GMT expires: - '-1' pragma: @@ -2571,15 +2560,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2588,7 +2577,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:40 GMT + - Fri, 15 Jan 2021 14:23:28 GMT expires: - '-1' pragma: @@ -2624,15 +2613,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2641,7 +2630,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:42 GMT + - Fri, 15 Jan 2021 14:23:30 GMT expires: - '-1' pragma: @@ -2677,15 +2666,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2694,7 +2683,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:43 GMT + - Fri, 15 Jan 2021 14:23:31 GMT expires: - '-1' pragma: @@ -2730,15 +2719,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2747,7 +2736,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:45 GMT + - Fri, 15 Jan 2021 14:23:32 GMT expires: - '-1' pragma: @@ -2783,15 +2772,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2800,7 +2789,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:47 GMT + - Fri, 15 Jan 2021 14:23:33 GMT expires: - '-1' pragma: @@ -2836,15 +2825,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2853,7 +2842,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:48 GMT + - Fri, 15 Jan 2021 14:23:35 GMT expires: - '-1' pragma: @@ -2889,15 +2878,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2906,7 +2895,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:50 GMT + - Fri, 15 Jan 2021 14:23:36 GMT expires: - '-1' pragma: @@ -2942,15 +2931,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2959,7 +2948,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:51 GMT + - Fri, 15 Jan 2021 14:23:37 GMT expires: - '-1' pragma: @@ -2995,15 +2984,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3012,7 +3001,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:53 GMT + - Fri, 15 Jan 2021 14:23:39 GMT expires: - '-1' pragma: @@ -3048,15 +3037,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3065,7 +3054,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:54 GMT + - Fri, 15 Jan 2021 14:23:40 GMT expires: - '-1' pragma: @@ -3101,15 +3090,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3118,7 +3107,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:56 GMT + - Fri, 15 Jan 2021 14:23:41 GMT expires: - '-1' pragma: @@ -3154,15 +3143,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3171,7 +3160,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:57 GMT + - Fri, 15 Jan 2021 14:23:42 GMT expires: - '-1' pragma: @@ -3207,15 +3196,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3224,7 +3213,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:01:59 GMT + - Fri, 15 Jan 2021 14:23:44 GMT expires: - '-1' pragma: @@ -3260,15 +3249,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3277,7 +3266,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:00 GMT + - Fri, 15 Jan 2021 14:23:45 GMT expires: - '-1' pragma: @@ -3313,15 +3302,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3330,7 +3319,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:02 GMT + - Fri, 15 Jan 2021 14:23:46 GMT expires: - '-1' pragma: @@ -3366,15 +3355,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3383,7 +3372,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:03 GMT + - Fri, 15 Jan 2021 14:23:48 GMT expires: - '-1' pragma: @@ -3419,15 +3408,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3436,7 +3425,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:05 GMT + - Fri, 15 Jan 2021 14:23:49 GMT expires: - '-1' pragma: @@ -3472,15 +3461,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3489,7 +3478,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:06 GMT + - Fri, 15 Jan 2021 14:23:50 GMT expires: - '-1' pragma: @@ -3525,15 +3514,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3542,7 +3531,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:08 GMT + - Fri, 15 Jan 2021 14:23:52 GMT expires: - '-1' pragma: @@ -3578,15 +3567,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3595,7 +3584,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:09 GMT + - Fri, 15 Jan 2021 14:23:53 GMT expires: - '-1' pragma: @@ -3631,15 +3620,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3648,7 +3637,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:11 GMT + - Fri, 15 Jan 2021 14:23:54 GMT expires: - '-1' pragma: @@ -3684,15 +3673,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3701,7 +3690,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:12 GMT + - Fri, 15 Jan 2021 14:23:56 GMT expires: - '-1' pragma: @@ -3737,15 +3726,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3754,7 +3743,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:14 GMT + - Fri, 15 Jan 2021 14:23:57 GMT expires: - '-1' pragma: @@ -3790,15 +3779,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3807,7 +3796,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:16 GMT + - Fri, 15 Jan 2021 14:23:58 GMT expires: - '-1' pragma: @@ -3843,15 +3832,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3860,7 +3849,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:17 GMT + - Fri, 15 Jan 2021 14:23:59 GMT expires: - '-1' pragma: @@ -3896,15 +3885,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3913,7 +3902,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:19 GMT + - Fri, 15 Jan 2021 14:24:01 GMT expires: - '-1' pragma: @@ -3949,15 +3938,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3966,7 +3955,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:20 GMT + - Fri, 15 Jan 2021 14:24:02 GMT expires: - '-1' pragma: @@ -4002,15 +3991,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4019,7 +4008,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:22 GMT + - Fri, 15 Jan 2021 14:24:03 GMT expires: - '-1' pragma: @@ -4055,15 +4044,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4072,7 +4061,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:23 GMT + - Fri, 15 Jan 2021 14:24:05 GMT expires: - '-1' pragma: @@ -4108,15 +4097,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4125,7 +4114,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:25 GMT + - Fri, 15 Jan 2021 14:24:06 GMT expires: - '-1' pragma: @@ -4161,15 +4150,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4178,7 +4167,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:27 GMT + - Fri, 15 Jan 2021 14:24:07 GMT expires: - '-1' pragma: @@ -4214,15 +4203,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4231,7 +4220,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:28 GMT + - Fri, 15 Jan 2021 14:24:08 GMT expires: - '-1' pragma: @@ -4267,15 +4256,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4284,7 +4273,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:30 GMT + - Fri, 15 Jan 2021 14:24:10 GMT expires: - '-1' pragma: @@ -4320,15 +4309,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4337,7 +4326,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:31 GMT + - Fri, 15 Jan 2021 14:24:11 GMT expires: - '-1' pragma: @@ -4373,15 +4362,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4390,7 +4379,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:33 GMT + - Fri, 15 Jan 2021 14:24:12 GMT expires: - '-1' pragma: @@ -4426,15 +4415,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4443,7 +4432,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:34 GMT + - Fri, 15 Jan 2021 14:24:14 GMT expires: - '-1' pragma: @@ -4479,15 +4468,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4496,7 +4485,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:36 GMT + - Fri, 15 Jan 2021 14:24:15 GMT expires: - '-1' pragma: @@ -4532,15 +4521,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4549,7 +4538,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:37 GMT + - Fri, 15 Jan 2021 14:24:16 GMT expires: - '-1' pragma: @@ -4585,15 +4574,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"InProgress","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4602,7 +4591,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:39 GMT + - Fri, 15 Jan 2021 14:24:18 GMT expires: - '-1' pragma: @@ -4638,24 +4627,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ac84940e-efc2-4c00-ac02-21bb3516f6ef?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","name":"ac84940e-efc2-4c00-ac02-21bb3516f6ef","status":"Succeeded","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"2020-12-18T09:01:09.0524595Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f0acbde6-9653-46fe-9ec4-eee97826816a"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:40 GMT + - Fri, 15 Jan 2021 14:24:19 GMT expires: - '-1' pragma: @@ -4691,32 +4680,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/f0acbde6-9653-46fe-9ec4-eee97826816a?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f0acbde6-9653-46fe-9ec4-eee97826816a","name":"f0acbde6-9653-46fe-9ec4-eee97826816a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7727323S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"2020-12-18T09:02:40.8251918Z","activityId":"8266c8da-410f-11eb-9b2e-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:42 GMT + - Fri, 15 Jan 2021 14:24: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: @@ -4726,7 +4713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '90' x-powered-by: - ASP.NET status: @@ -4740,30 +4727,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-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","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":"2260877383782914097","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"}}]}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:45 GMT + - Fri, 15 Jan 2021 14:24:22 GMT expires: - '-1' pragma: @@ -4779,66 +4766,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '89' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm 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 + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' 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/5b4d5298-9b68-41e4-a70f-9ccc7e74fe27?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 09:02:46 GMT + - Fri, 15 Jan 2021 14:24: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/5b4d5298-9b68-41e4-a70f-9ccc7e74fe27?api-version=2016-12-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: + - '88' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4847,30 +4833,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/5b4d5298-9b68-41e4-a70f-9ccc7e74fe27?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"5b4d5298-9b68-41e4-a70f-9ccc7e74fe27","name":"5b4d5298-9b68-41e4-a70f-9ccc7e74fe27","status":"Succeeded","startTime":"2020-12-18T09:02:47.5157261Z","endTime":"2020-12-18T09:02:47.5157261Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"279fa819-59bc-490a-ba74-11a0a144ab00"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:49 GMT + - Fri, 15 Jan 2021 14:24:25 GMT expires: - '-1' pragma: @@ -4886,7 +4872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '87' x-powered-by: - ASP.NET status: @@ -4900,40 +4886,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.0220652S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:51 GMT + - Fri, 15 Jan 2021 14: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: @@ -4943,7 +4925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '86' x-powered-by: - ASP.NET status: @@ -4957,40 +4939,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.3253683S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:53 GMT + - Fri, 15 Jan 2021 14:24: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: @@ -5000,7 +4978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '85' x-powered-by: - ASP.NET status: @@ -5014,40 +4992,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.120157S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1155' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:02:54 GMT + - Fri, 15 Jan 2021 14:24: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: @@ -5057,7 +5031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '84' x-powered-by: - ASP.NET status: @@ -5071,40 +5045,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37.9227421S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1157' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:03:25 GMT + - Fri, 15 Jan 2021 14:24: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: @@ -5114,7 +5084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '83' x-powered-by: - ASP.NET status: @@ -5128,40 +5098,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.7880704S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 09:03:56 GMT + - Fri, 15 Jan 2021 14:24: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: @@ -5171,7 +5137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '82' x-powered-by: - ASP.NET status: @@ -5185,33 +5151,631 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.5249326S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 + response: + body: + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"InProgress","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/5d74d92a-1708-4bbb-a306-406a2418f75c?api-version=2020-10-01 + response: + body: + string: '{"id":"5d74d92a-1708-4bbb-a306-406a2418f75c","name":"5d74d92a-1708-4bbb-a306-406a2418f75c","status":"Succeeded","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"2021-01-15T14:23:03.0943754Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"13158be9-c8dc-416c-95f4-ad2e1f2d7b9f"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/13158be9-c8dc-416c-95f4-ad2e1f2d7b9f?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/13158be9-c8dc-416c-95f4-ad2e1f2d7b9f","name":"13158be9-c8dc-416c-95f4-ad2e1f2d7b9f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.6190801S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"2021-01-15T14:24:34.7134555Z","activityId":"23a5b4e9-573d-11eb-9319-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '970' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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":"2260842198294552625","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1968' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '126' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-14T00: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/caa6a971-6007-4a16-be97-81f3e431354b?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:24: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/caa6a971-6007-4a16-be97-81f3e431354b?api-version=2020-10-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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/caa6a971-6007-4a16-be97-81f3e431354b?api-version=2020-10-01 + response: + body: + string: '{"id":"caa6a971-6007-4a16-be97-81f3e431354b","name":"caa6a971-6007-4a16-be97-81f3e431354b","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/caa6a971-6007-4a16-be97-81f3e431354b?api-version=2020-10-01 + response: + body: + string: '{"id":"caa6a971-6007-4a16-be97-81f3e431354b","name":"caa6a971-6007-4a16-be97-81f3e431354b","status":"Succeeded","startTime":"2021-01-15T14:24:37.3758299Z","endTime":"2021-01-15T14:24:37.3758299Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9b75d285-96d0-438a-be27-4d7535f9eb2e"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.4290081S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2042775S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.8490904S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.6261617S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:04:26 GMT + - Fri, 15 Jan 2021 14:25:12 GMT expires: - '-1' pragma: @@ -5248,27 +5812,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.3407306S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M5.2256672S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:04:58 GMT + - Fri, 15 Jan 2021 14:25:42 GMT expires: - '-1' pragma: @@ -5305,18 +5869,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M41.1308449S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.7406835S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5325,7 +5889,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:05:28 GMT + - Fri, 15 Jan 2021 14:26:12 GMT expires: - '-1' pragma: @@ -5362,27 +5926,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M12.0561371S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M6.2825814S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:05:59 GMT + - Fri, 15 Jan 2021 14:26:43 GMT expires: - '-1' pragma: @@ -5419,18 +5983,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M42.8483897S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.9088206S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5439,7 +6003,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:06:30 GMT + - Fri, 15 Jan 2021 14:27:13 GMT expires: - '-1' pragma: @@ -5476,27 +6040,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M13.7160791S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M8.0505674S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:07:01 GMT + - Fri, 15 Jan 2021 14:27:45 GMT expires: - '-1' pragma: @@ -5533,18 +6097,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M44.5759722S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.7021283S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5553,7 +6117,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:07:32 GMT + - Fri, 15 Jan 2021 14:28:15 GMT expires: - '-1' pragma: @@ -5590,27 +6154,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M16.5295217S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M9.6214711S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:08:04 GMT + - Fri, 15 Jan 2021 14:28:47 GMT expires: - '-1' pragma: @@ -5647,27 +6211,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M47.334656S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M40.4944751S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:08:34 GMT + - Fri, 15 Jan 2021 14:29:17 GMT expires: - '-1' pragma: @@ -5704,18 +6268,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M18.1466507S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M11.5050697S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5724,7 +6288,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:09:05 GMT + - Fri, 15 Jan 2021 14:29:48 GMT expires: - '-1' pragma: @@ -5761,18 +6325,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M49.0005803S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M42.3222789S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5781,7 +6345,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:09:36 GMT + - Fri, 15 Jan 2021 14:30:19 GMT expires: - '-1' pragma: @@ -5818,27 +6382,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M19.8737952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M12.93909S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:10:07 GMT + - Fri, 15 Jan 2021 14:30:50 GMT expires: - '-1' pragma: @@ -5875,27 +6439,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M50.6726588S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M43.5226944S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:10:38 GMT + - Fri, 15 Jan 2021 14:31:20 GMT expires: - '-1' pragma: @@ -5932,27 +6496,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M21.4118655S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M14.0437384S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:11:08 GMT + - Fri, 15 Jan 2021 14:31:51 GMT expires: - '-1' pragma: @@ -5989,27 +6553,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M52.1729013S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M44.653291S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:11:39 GMT + - Fri, 15 Jan 2021 14:32:21 GMT expires: - '-1' pragma: @@ -6046,18 +6610,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M22.8393847S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M15.1756406S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6066,7 +6630,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:12:10 GMT + - Fri, 15 Jan 2021 14:32:52 GMT expires: - '-1' pragma: @@ -6103,18 +6667,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M53.6280161S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M45.6843974S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6123,7 +6687,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:12:41 GMT + - Fri, 15 Jan 2021 14:33:22 GMT expires: - '-1' pragma: @@ -6160,18 +6724,132 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M35.4392098S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:34: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M6.0502881S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1158' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:34: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M25.5653241S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M36.6343187S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6180,7 +6858,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:13:12 GMT + - Fri, 15 Jan 2021 14:35:13 GMT expires: - '-1' pragma: @@ -6197,7 +6875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '147' x-powered-by: - ASP.NET status: @@ -6217,27 +6895,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M56.6314245S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M7.1796574S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:13:44 GMT + - Fri, 15 Jan 2021 14:35:44 GMT expires: - '-1' pragma: @@ -6254,7 +6932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '146' x-powered-by: - ASP.NET status: @@ -6274,18 +6952,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M27.7812748S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M37.7133477S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6294,7 +6972,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:14:15 GMT + - Fri, 15 Jan 2021 14:36:14 GMT expires: - '-1' pragma: @@ -6311,7 +6989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '145' x-powered-by: - ASP.NET status: @@ -6331,27 +7009,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M58.625224S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M8.242173S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:14:46 GMT + - Fri, 15 Jan 2021 14:36:45 GMT expires: - '-1' pragma: @@ -6368,7 +7046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '144' x-powered-by: - ASP.NET status: @@ -6388,18 +7066,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M30.2238429S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M38.8146766S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6408,7 +7086,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:15:18 GMT + - Fri, 15 Jan 2021 14:37:15 GMT expires: - '-1' pragma: @@ -6425,7 +7103,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '143' x-powered-by: - ASP.NET status: @@ -6445,27 +7123,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M1.1407886S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M9.367494S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:15:48 GMT + - Fri, 15 Jan 2021 14:37:46 GMT expires: - '-1' pragma: @@ -6482,7 +7160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '142' x-powered-by: - ASP.NET status: @@ -6502,18 +7180,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M31.9004733S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M39.9088453S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6522,7 +7200,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:16:19 GMT + - Fri, 15 Jan 2021 14:38:17 GMT expires: - '-1' pragma: @@ -6539,7 +7217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '141' x-powered-by: - ASP.NET status: @@ -6559,27 +7237,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M2.7953615S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M10.4587745S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:16:50 GMT + - Fri, 15 Jan 2021 14:38:47 GMT expires: - '-1' pragma: @@ -6596,7 +7274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '140' x-powered-by: - ASP.NET status: @@ -6616,27 +7294,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M33.574807S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M41.3193623S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:17:20 GMT + - Fri, 15 Jan 2021 14:39:18 GMT expires: - '-1' pragma: @@ -6653,7 +7331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '139' x-powered-by: - ASP.NET status: @@ -6673,27 +7351,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M4.4019411S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M11.8215007S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:17:51 GMT + - Fri, 15 Jan 2021 14:39:48 GMT expires: - '-1' pragma: @@ -6710,7 +7388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '138' x-powered-by: - ASP.NET status: @@ -6730,18 +7408,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M36.3354458S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M42.3046822S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6750,7 +7428,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:18:23 GMT + - Fri, 15 Jan 2021 14:40:19 GMT expires: - '-1' pragma: @@ -6767,7 +7445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '137' x-powered-by: - ASP.NET status: @@ -6787,27 +7465,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M7.2648212S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M12.9654192S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:18:54 GMT + - Fri, 15 Jan 2021 14:40:50 GMT expires: - '-1' pragma: @@ -6824,7 +7502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '136' x-powered-by: - ASP.NET status: @@ -6844,18 +7522,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M38.1189646S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M43.5300939S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6864,7 +7542,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:19:25 GMT + - Fri, 15 Jan 2021 14:41:21 GMT expires: - '-1' pragma: @@ -6881,7 +7559,64 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M14.0512366S","actionsInfo":[1],"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":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:41: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: + - '134' x-powered-by: - ASP.NET status: @@ -6901,27 +7636,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M8.9948148S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M44.5249474S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:19:56 GMT + - Fri, 15 Jan 2021 14:42:21 GMT expires: - '-1' pragma: @@ -6938,7 +7673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '133' x-powered-by: - ASP.NET status: @@ -6958,27 +7693,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M39.8653715S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M15.03584S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:20:27 GMT + - Fri, 15 Jan 2021 14:42:52 GMT expires: - '-1' pragma: @@ -6995,7 +7730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '132' x-powered-by: - ASP.NET status: @@ -7015,18 +7750,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M10.7915643S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M45.5899964S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7035,7 +7770,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:20:58 GMT + - Fri, 15 Jan 2021 14:43:22 GMT expires: - '-1' pragma: @@ -7052,7 +7787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '131' x-powered-by: - ASP.NET status: @@ -7072,18 +7807,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M41.8069787S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M16.0933627S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7092,7 +7827,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:21:29 GMT + - Fri, 15 Jan 2021 14:43:53 GMT expires: - '-1' pragma: @@ -7109,7 +7844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '130' x-powered-by: - ASP.NET status: @@ -7129,18 +7864,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M12.7078955S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M46.6577772S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7149,7 +7884,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:22:00 GMT + - Fri, 15 Jan 2021 14:44:23 GMT expires: - '-1' pragma: @@ -7166,7 +7901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '129' x-powered-by: - ASP.NET status: @@ -7186,18 +7921,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M43.5594576S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M17.5201381S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7206,7 +7941,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:22:30 GMT + - Fri, 15 Jan 2021 14:44:54 GMT expires: - '-1' pragma: @@ -7223,7 +7958,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '128' x-powered-by: - ASP.NET status: @@ -7243,18 +7978,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M14.3834925S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M48.1313695S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7263,7 +7998,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:23:01 GMT + - Fri, 15 Jan 2021 14:45:25 GMT expires: - '-1' pragma: @@ -7280,7 +8015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '127' x-powered-by: - ASP.NET status: @@ -7300,18 +8035,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M45.1453365S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M18.8229968S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7320,7 +8055,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:23:32 GMT + - Fri, 15 Jan 2021 14:45:55 GMT expires: - '-1' pragma: @@ -7337,7 +8072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '126' x-powered-by: - ASP.NET status: @@ -7357,18 +8092,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M15.9372458S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M49.4653529S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7377,7 +8112,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:24:03 GMT + - Fri, 15 Jan 2021 14:46:26 GMT expires: - '-1' pragma: @@ -7394,7 +8129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '125' x-powered-by: - ASP.NET status: @@ -7414,27 +8149,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M46.6841221S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M20.002494S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:24:34 GMT + - Fri, 15 Jan 2021 14:46:56 GMT expires: - '-1' pragma: @@ -7451,7 +8186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '124' x-powered-by: - ASP.NET status: @@ -7471,18 +8206,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M17.5918884S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M50.6039317S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7491,7 +8226,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:25:04 GMT + - Fri, 15 Jan 2021 14:47:28 GMT expires: - '-1' pragma: @@ -7508,7 +8243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '123' x-powered-by: - ASP.NET status: @@ -7528,18 +8263,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M48.3667016S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M21.1115743S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7548,7 +8283,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:25:36 GMT + - Fri, 15 Jan 2021 14:47:57 GMT expires: - '-1' pragma: @@ -7565,7 +8300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '122' x-powered-by: - ASP.NET status: @@ -7585,18 +8320,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M19.1033218S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M51.8201805S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7605,7 +8340,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:26:06 GMT + - Fri, 15 Jan 2021 14:48:29 GMT expires: - '-1' pragma: @@ -7622,7 +8357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '121' x-powered-by: - ASP.NET status: @@ -7642,27 +8377,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M49.8607821S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M22.482234S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:26:37 GMT + - Fri, 15 Jan 2021 14:48:59 GMT expires: - '-1' pragma: @@ -7679,7 +8414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '120' x-powered-by: - ASP.NET status: @@ -7699,18 +8434,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M20.6262021S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M53.0505724S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7719,7 +8454,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:27:07 GMT + - Fri, 15 Jan 2021 14:49:30 GMT expires: - '-1' pragma: @@ -7736,7 +8471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '119' x-powered-by: - ASP.NET status: @@ -7756,27 +8491,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M51.4234451S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M24.011968S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:27:39 GMT + - Fri, 15 Jan 2021 14:50:00 GMT expires: - '-1' pragma: @@ -7793,7 +8528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '118' x-powered-by: - ASP.NET status: @@ -7813,18 +8548,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M22.3846634S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M54.5276744S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7833,7 +8568,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:28:09 GMT + - Fri, 15 Jan 2021 14:50:31 GMT expires: - '-1' pragma: @@ -7850,7 +8585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '117' x-powered-by: - ASP.NET status: @@ -7870,18 +8605,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M53.4115181S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M25.0591577S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7890,7 +8625,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:28:41 GMT + - Fri, 15 Jan 2021 14:51:02 GMT expires: - '-1' pragma: @@ -7907,7 +8642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '116' x-powered-by: - ASP.NET status: @@ -7927,18 +8662,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M24.1217295S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M55.5742384S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7947,7 +8682,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:29:11 GMT + - Fri, 15 Jan 2021 14:51:32 GMT expires: - '-1' pragma: @@ -7964,7 +8699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '115' x-powered-by: - ASP.NET status: @@ -7984,27 +8719,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M54.9979456S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M26.17321S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:29:42 GMT + - Fri, 15 Jan 2021 14:52:02 GMT expires: - '-1' pragma: @@ -8021,7 +8756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '114' x-powered-by: - ASP.NET status: @@ -8041,18 +8776,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M25.8457763S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M56.8228713S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8061,7 +8796,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:30:13 GMT + - Fri, 15 Jan 2021 14:52:34 GMT expires: - '-1' pragma: @@ -8078,7 +8813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '113' x-powered-by: - ASP.NET status: @@ -8098,18 +8833,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M56.6378589S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M27.3840658S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8118,7 +8853,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:30:43 GMT + - Fri, 15 Jan 2021 14:53:04 GMT expires: - '-1' pragma: @@ -8135,7 +8870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '112' x-powered-by: - ASP.NET status: @@ -8155,27 +8890,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M27.4206989S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M57.972426S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:31:15 GMT + - Fri, 15 Jan 2021 14:53:34 GMT expires: - '-1' pragma: @@ -8192,7 +8927,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '111' x-powered-by: - ASP.NET status: @@ -8212,18 +8947,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M58.1374369S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M28.5287214S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8232,7 +8967,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:31:45 GMT + - Fri, 15 Jan 2021 14:54:05 GMT expires: - '-1' pragma: @@ -8249,7 +8984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '110' x-powered-by: - ASP.NET status: @@ -8269,18 +9004,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M29.0383047S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M59.1048073S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8289,7 +9024,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:32:16 GMT + - Fri, 15 Jan 2021 14:54:35 GMT expires: - '-1' pragma: @@ -8306,7 +9041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '109' x-powered-by: - ASP.NET status: @@ -8326,27 +9061,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M0.9257462S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M29.7232358S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:32:48 GMT + - Fri, 15 Jan 2021 14:55:06 GMT expires: - '-1' pragma: @@ -8363,7 +9098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '108' x-powered-by: - ASP.NET status: @@ -8383,27 +9118,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M31.7327354S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M0.4683142S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:33:19 GMT + - Fri, 15 Jan 2021 14:55:38 GMT expires: - '-1' pragma: @@ -8420,7 +9155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '107' x-powered-by: - ASP.NET status: @@ -8440,27 +9175,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M2.5789187S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M31.1031616S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:33:50 GMT + - Fri, 15 Jan 2021 14:56:08 GMT expires: - '-1' pragma: @@ -8477,7 +9212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '106' x-powered-by: - ASP.NET status: @@ -8497,27 +9232,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M33.4576788S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M1.7124024S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:34:21 GMT + - Fri, 15 Jan 2021 14:56:38 GMT expires: - '-1' pragma: @@ -8534,7 +9269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '105' x-powered-by: - ASP.NET status: @@ -8554,27 +9289,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M4.1882933S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M32.2824697S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:34:51 GMT + - Fri, 15 Jan 2021 14:57:09 GMT expires: - '-1' pragma: @@ -8591,7 +9326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '104' x-powered-by: - ASP.NET status: @@ -8611,27 +9346,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M35.0212268S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M2.8009088S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:35:22 GMT + - Fri, 15 Jan 2021 14:57:40 GMT expires: - '-1' pragma: @@ -8648,7 +9383,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '103' x-powered-by: - ASP.NET status: @@ -8668,27 +9403,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M5.7410282S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M33.3225196S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:35:52 GMT + - Fri, 15 Jan 2021 14:58:10 GMT expires: - '-1' pragma: @@ -8705,7 +9440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '102' x-powered-by: - ASP.NET status: @@ -8725,27 +9460,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M36.5345437S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M3.812386S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 09:36:24 GMT + - Fri, 15 Jan 2021 14:58:40 GMT expires: - '-1' pragma: @@ -8762,7 +9497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '101' x-powered-by: - ASP.NET status: @@ -8782,27 +9517,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M7.3651065S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M34.3620694S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:36:54 GMT + - Fri, 15 Jan 2021 14:59:11 GMT expires: - '-1' pragma: @@ -8819,7 +9554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '100' x-powered-by: - ASP.NET status: @@ -8839,27 +9574,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M38.1357354S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M4.9777517S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:37:25 GMT + - Fri, 15 Jan 2021 14:59:41 GMT expires: - '-1' pragma: @@ -8876,7 +9611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '99' x-powered-by: - ASP.NET status: @@ -8896,27 +9631,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M9.9575847S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M35.6806684S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:37:57 GMT + - Fri, 15 Jan 2021 15:00:12 GMT expires: - '-1' pragma: @@ -8933,7 +9668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '98' x-powered-by: - ASP.NET status: @@ -8953,27 +9688,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M40.8378458S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M6.2033062S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:38:28 GMT + - Fri, 15 Jan 2021 15:00:43 GMT expires: - '-1' pragma: @@ -8990,7 +9725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '97' x-powered-by: - ASP.NET status: @@ -9010,18 +9745,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M11.6788281S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M36.9190604S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9030,7 +9765,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:38:59 GMT + - Fri, 15 Jan 2021 15:01:14 GMT expires: - '-1' pragma: @@ -9047,7 +9782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '96' x-powered-by: - ASP.NET status: @@ -9067,27 +9802,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M42.4620096S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M7.6462136S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:39:29 GMT + - Fri, 15 Jan 2021 15:01:44 GMT expires: - '-1' pragma: @@ -9104,7 +9839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '95' x-powered-by: - ASP.NET status: @@ -9124,18 +9859,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M13.2824707S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M38.2288044S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9144,7 +9879,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:40:01 GMT + - Fri, 15 Jan 2021 15:02:15 GMT expires: - '-1' pragma: @@ -9161,7 +9896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '94' x-powered-by: - ASP.NET status: @@ -9181,27 +9916,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M44.1384847S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M8.8710004S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:40:31 GMT + - Fri, 15 Jan 2021 15:02:45 GMT expires: - '-1' pragma: @@ -9218,7 +9953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '93' x-powered-by: - ASP.NET status: @@ -9238,18 +9973,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M14.931046S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M39.589758S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9258,7 +9993,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:41:02 GMT + - Fri, 15 Jan 2021 15:03:16 GMT expires: - '-1' pragma: @@ -9275,7 +10010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '92' x-powered-by: - ASP.NET status: @@ -9295,18 +10030,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M45.8161905S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M10.1485355S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9315,7 +10050,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:41:33 GMT + - Fri, 15 Jan 2021 15:03:47 GMT expires: - '-1' pragma: @@ -9332,7 +10067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '91' x-powered-by: - ASP.NET status: @@ -9352,18 +10087,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M16.7731463S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M40.7603053S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9372,7 +10107,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:42:04 GMT + - Fri, 15 Jan 2021 15:04:18 GMT expires: - '-1' pragma: @@ -9389,7 +10124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '90' x-powered-by: - ASP.NET status: @@ -9409,18 +10144,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M47.6434276S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M11.3431337S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9429,7 +10164,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:42:35 GMT + - Fri, 15 Jan 2021 15:04:49 GMT expires: - '-1' pragma: @@ -9446,7 +10181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '89' x-powered-by: - ASP.NET status: @@ -9466,18 +10201,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M19.6520825S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M44.2607361S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9486,7 +10221,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:43:06 GMT + - Fri, 15 Jan 2021 15:05:21 GMT expires: - '-1' pragma: @@ -9503,7 +10238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '88' x-powered-by: - ASP.NET status: @@ -9523,18 +10258,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M50.4931701S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M14.8069432S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9543,7 +10278,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:43:38 GMT + - Fri, 15 Jan 2021 15:05:51 GMT expires: - '-1' pragma: @@ -9560,7 +10295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '87' x-powered-by: - ASP.NET status: @@ -9580,18 +10315,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M21.3891374S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M45.4242158S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9600,7 +10335,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:44:09 GMT + - Fri, 15 Jan 2021 15:06:22 GMT expires: - '-1' pragma: @@ -9617,7 +10352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '86' x-powered-by: - ASP.NET status: @@ -9637,27 +10372,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M52.985586S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M16.2244381S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:44:41 GMT + - Fri, 15 Jan 2021 15:06:53 GMT expires: - '-1' pragma: @@ -9674,7 +10409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '85' x-powered-by: - ASP.NET status: @@ -9694,18 +10429,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M24.4284954S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M46.8477032S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9714,7 +10449,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:45:11 GMT + - Fri, 15 Jan 2021 15:07:24 GMT expires: - '-1' pragma: @@ -9731,7 +10466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '84' x-powered-by: - ASP.NET status: @@ -9751,27 +10486,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M55.2137297S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M17.471984S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:45:43 GMT + - Fri, 15 Jan 2021 15:07:54 GMT expires: - '-1' pragma: @@ -9788,7 +10523,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '83' x-powered-by: - ASP.NET status: @@ -9808,18 +10543,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M26.0580352S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M48.0779189S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9828,7 +10563,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:46:13 GMT + - Fri, 15 Jan 2021 15:08:25 GMT expires: - '-1' pragma: @@ -9845,7 +10580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '82' x-powered-by: - ASP.NET status: @@ -9865,18 +10600,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M57.5179867S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M18.6790556S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9885,7 +10620,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:46:44 GMT + - Fri, 15 Jan 2021 15:08:55 GMT expires: - '-1' pragma: @@ -9902,7 +10637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '81' x-powered-by: - ASP.NET status: @@ -9922,18 +10657,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M28.3713464S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M49.3657839S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9942,7 +10677,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:47:16 GMT + - Fri, 15 Jan 2021 15:09:26 GMT expires: - '-1' pragma: @@ -9959,7 +10694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '80' x-powered-by: - ASP.NET status: @@ -9979,18 +10714,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M59.2659404S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M19.9448476S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9999,7 +10734,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:47:47 GMT + - Fri, 15 Jan 2021 15:09:57 GMT expires: - '-1' pragma: @@ -10016,7 +10751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '79' x-powered-by: - ASP.NET status: @@ -10036,27 +10771,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M30.162879S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M50.5107523S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:48:18 GMT + - Fri, 15 Jan 2021 15:10:27 GMT expires: - '-1' pragma: @@ -10073,7 +10808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '78' x-powered-by: - ASP.NET status: @@ -10093,27 +10828,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M0.9891606S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M21.0487148S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:48:48 GMT + - Fri, 15 Jan 2021 15:10:57 GMT expires: - '-1' pragma: @@ -10130,7 +10865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '77' x-powered-by: - ASP.NET status: @@ -10150,18 +10885,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M31.7843591S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M51.5513695S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10170,7 +10905,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:49:19 GMT + - Fri, 15 Jan 2021 15:11:29 GMT expires: - '-1' pragma: @@ -10187,7 +10922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '76' x-powered-by: - ASP.NET status: @@ -10207,27 +10942,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M2.6539771S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M22.1864199S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:49:49 GMT + - Fri, 15 Jan 2021 15:11:59 GMT expires: - '-1' pragma: @@ -10244,7 +10979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '75' x-powered-by: - ASP.NET status: @@ -10264,18 +10999,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M33.4223689S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M53.0241528S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10284,7 +11019,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:50:21 GMT + - Fri, 15 Jan 2021 15:12:30 GMT expires: - '-1' pragma: @@ -10301,7 +11036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '74' x-powered-by: - ASP.NET status: @@ -10321,27 +11056,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M4.360315S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M23.4913424S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:50:52 GMT + - Fri, 15 Jan 2021 15:13:01 GMT expires: - '-1' pragma: @@ -10358,7 +11093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '73' x-powered-by: - ASP.NET status: @@ -10378,18 +11113,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M35.1542475S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M54.0421162S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10398,7 +11133,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:51:22 GMT + - Fri, 15 Jan 2021 15:13:31 GMT expires: - '-1' pragma: @@ -10415,7 +11150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '72' x-powered-by: - ASP.NET status: @@ -10435,27 +11170,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M5.9689588S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M24.5696624S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:51:53 GMT + - Fri, 15 Jan 2021 15:14:01 GMT expires: - '-1' pragma: @@ -10472,7 +11207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '71' x-powered-by: - ASP.NET status: @@ -10492,18 +11227,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M38.5061407S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M55.2089313S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10512,7 +11247,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:52:25 GMT + - Fri, 15 Jan 2021 15:14:32 GMT expires: - '-1' pragma: @@ -10529,7 +11264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '70' x-powered-by: - ASP.NET status: @@ -10549,27 +11284,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M9.2958454S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M26.2129147S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 09:52:57 GMT + - Fri, 15 Jan 2021 15:15:03 GMT expires: - '-1' pragma: @@ -10586,7 +11321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '69' x-powered-by: - ASP.NET status: @@ -10606,18 +11341,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M40.2227614S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M56.8915332S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10626,7 +11361,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:53:27 GMT + - Fri, 15 Jan 2021 15:15:34 GMT expires: - '-1' pragma: @@ -10643,7 +11378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '68' x-powered-by: - ASP.NET status: @@ -10663,18 +11398,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M11.0100902S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M27.4714894S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10683,7 +11418,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:53:59 GMT + - Fri, 15 Jan 2021 15:16:04 GMT expires: - '-1' pragma: @@ -10700,7 +11435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '67' x-powered-by: - ASP.NET status: @@ -10720,18 +11455,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M42.3473615S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M58.1101563S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10740,7 +11475,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:54:29 GMT + - Fri, 15 Jan 2021 15:16:35 GMT expires: - '-1' pragma: @@ -10757,7 +11492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '66' x-powered-by: - ASP.NET status: @@ -10777,18 +11512,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M13.1477081S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M28.6482237S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10797,7 +11532,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:55:00 GMT + - Fri, 15 Jan 2021 15:17:06 GMT expires: - '-1' pragma: @@ -10814,7 +11549,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '65' x-powered-by: - ASP.NET status: @@ -10834,18 +11569,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M43.9368852S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M59.9884714S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10854,7 +11589,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:55:31 GMT + - Fri, 15 Jan 2021 15:17:37 GMT expires: - '-1' pragma: @@ -10871,7 +11606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '64' x-powered-by: - ASP.NET status: @@ -10891,18 +11626,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M14.8032934S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M30.8667318S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10911,7 +11646,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:56:02 GMT + - Fri, 15 Jan 2021 15:18:07 GMT expires: - '-1' pragma: @@ -10928,7 +11663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '63' x-powered-by: - ASP.NET status: @@ -10948,27 +11683,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M45.7067484S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M1.5325635S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:56:33 GMT + - Fri, 15 Jan 2021 15:18:39 GMT expires: - '-1' pragma: @@ -10985,7 +11720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '62' x-powered-by: - ASP.NET status: @@ -11005,18 +11740,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M16.5869698S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M32.0935082S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11025,7 +11760,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:57:03 GMT + - Fri, 15 Jan 2021 15:19:09 GMT expires: - '-1' pragma: @@ -11042,7 +11777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '61' x-powered-by: - ASP.NET status: @@ -11062,27 +11797,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M48.7398281S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M2.6786038S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:57:36 GMT + - Fri, 15 Jan 2021 15:19:40 GMT expires: - '-1' pragma: @@ -11099,7 +11834,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '60' x-powered-by: - ASP.NET status: @@ -11119,18 +11854,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M19.7307596S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M33.2952897S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11139,7 +11874,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:58:07 GMT + - Fri, 15 Jan 2021 15:20:10 GMT expires: - '-1' pragma: @@ -11156,7 +11891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '59' x-powered-by: - ASP.NET status: @@ -11176,27 +11911,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M50.6118882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M3.9518418S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:58:38 GMT + - Fri, 15 Jan 2021 15:20:41 GMT expires: - '-1' pragma: @@ -11213,7 +11948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '58' x-powered-by: - ASP.NET status: @@ -11233,18 +11968,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M21.4953999S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M34.5779296S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11253,7 +11988,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 09:59:09 GMT + - Fri, 15 Jan 2021 15:21:11 GMT expires: - '-1' pragma: @@ -11270,7 +12005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '57' x-powered-by: - ASP.NET status: @@ -11290,27 +12025,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M52.3666494S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M5.1940268S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 09:59:39 GMT + - Fri, 15 Jan 2021 15:21:42 GMT expires: - '-1' pragma: @@ -11327,7 +12062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '56' x-powered-by: - ASP.NET status: @@ -11347,18 +12082,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M23.2124273S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M35.8058822S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11367,7 +12102,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:00:11 GMT + - Fri, 15 Jan 2021 15:22:12 GMT expires: - '-1' pragma: @@ -11384,7 +12119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '55' x-powered-by: - ASP.NET status: @@ -11404,27 +12139,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M53.9787568S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M6.4257359S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 10:00:41 GMT + - Fri, 15 Jan 2021 15:22:44 GMT expires: - '-1' pragma: @@ -11441,7 +12176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '54' x-powered-by: - ASP.NET status: @@ -11461,18 +12196,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M24.8962209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M37.0677334S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11481,7 +12216,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:01:12 GMT + - Fri, 15 Jan 2021 15:23:14 GMT expires: - '-1' pragma: @@ -11498,7 +12233,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '53' x-powered-by: - ASP.NET status: @@ -11518,27 +12253,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M56.7719979S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M7.903592S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 10:01:44 GMT + - Fri, 15 Jan 2021 15:23:45 GMT expires: - '-1' pragma: @@ -11555,7 +12290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '52' x-powered-by: - ASP.NET status: @@ -11575,27 +12310,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M27.648036S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M38.5535801S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 10:02:14 GMT + - Fri, 15 Jan 2021 15:24:15 GMT expires: - '-1' pragma: @@ -11612,7 +12347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '51' x-powered-by: - ASP.NET status: @@ -11632,27 +12367,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M59.6644278S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9.1227429S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 10:02:47 GMT + - Fri, 15 Jan 2021 15:24:46 GMT expires: - '-1' pragma: @@ -11669,7 +12404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '50' x-powered-by: - ASP.NET status: @@ -11689,18 +12424,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H30.5741454S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H39.7392995S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11709,7 +12444,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:03:17 GMT + - Fri, 15 Jan 2021 15:25:16 GMT expires: - '-1' pragma: @@ -11726,7 +12461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '49' x-powered-by: - ASP.NET status: @@ -11746,27 +12481,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M1.4403108S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M10.4360784S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:03:49 GMT + - Fri, 15 Jan 2021 15:25:47 GMT expires: - '-1' pragma: @@ -11783,7 +12518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '48' x-powered-by: - ASP.NET status: @@ -11803,18 +12538,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M32.5543058S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M41.0238311S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11823,7 +12558,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:04:19 GMT + - Fri, 15 Jan 2021 15:26:18 GMT expires: - '-1' pragma: @@ -11840,7 +12575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '47' x-powered-by: - ASP.NET status: @@ -11860,27 +12595,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M3.3607932S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M11.5420224S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:04:50 GMT + - Fri, 15 Jan 2021 15:26:48 GMT expires: - '-1' pragma: @@ -11897,7 +12632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '46' x-powered-by: - ASP.NET status: @@ -11917,18 +12652,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M34.2177955S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M42.1117547S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11937,7 +12672,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:05:21 GMT + - Fri, 15 Jan 2021 15:27:19 GMT expires: - '-1' pragma: @@ -11954,7 +12689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '45' x-powered-by: - ASP.NET status: @@ -11974,27 +12709,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M5.2939393S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M12.9082967S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:05:52 GMT + - Fri, 15 Jan 2021 15:27:50 GMT expires: - '-1' pragma: @@ -12011,7 +12746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '44' x-powered-by: - ASP.NET status: @@ -12031,18 +12766,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M36.1918298S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M43.4741766S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12051,7 +12786,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:06:25 GMT + - Fri, 15 Jan 2021 15:28:20 GMT expires: - '-1' pragma: @@ -12068,7 +12803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '43' x-powered-by: - ASP.NET status: @@ -12088,27 +12823,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M7.8957809S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M14.0935894S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:06:55 GMT + - Fri, 15 Jan 2021 15:28:51 GMT expires: - '-1' pragma: @@ -12125,7 +12860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '42' x-powered-by: - ASP.NET status: @@ -12145,18 +12880,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M39.7415828S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M44.9764655S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12165,7 +12900,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:07:26 GMT + - Fri, 15 Jan 2021 15:29:22 GMT expires: - '-1' pragma: @@ -12182,7 +12917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '41' x-powered-by: - ASP.NET status: @@ -12202,27 +12937,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M10.4687085S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M15.476098S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 10:07:58 GMT + - Fri, 15 Jan 2021 15:29:53 GMT expires: - '-1' pragma: @@ -12239,7 +12974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '40' x-powered-by: - ASP.NET status: @@ -12259,18 +12994,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M41.2794122S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M46.0102333S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12279,7 +13014,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:08:28 GMT + - Fri, 15 Jan 2021 15:30:22 GMT expires: - '-1' pragma: @@ -12296,7 +13031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '39' x-powered-by: - ASP.NET status: @@ -12316,18 +13051,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M12.2021816S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M16.5458368S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12336,7 +13071,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:08:59 GMT + - Fri, 15 Jan 2021 15:30:53 GMT expires: - '-1' pragma: @@ -12353,7 +13088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '38' x-powered-by: - ASP.NET status: @@ -12373,18 +13108,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M43.1871096S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M47.1351139S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12393,7 +13128,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:09:31 GMT + - Fri, 15 Jan 2021 15:31:24 GMT expires: - '-1' pragma: @@ -12410,7 +13145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '37' x-powered-by: - ASP.NET status: @@ -12430,18 +13165,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M14.0213822S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M17.6428947S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12450,7 +13185,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:10:01 GMT + - Fri, 15 Jan 2021 15:31:55 GMT expires: - '-1' pragma: @@ -12467,7 +13202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '36' x-powered-by: - ASP.NET status: @@ -12487,18 +13222,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M44.8442704S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M48.1680195S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12507,7 +13242,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:10:32 GMT + - Fri, 15 Jan 2021 15:32:25 GMT expires: - '-1' pragma: @@ -12524,7 +13259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '35' x-powered-by: - ASP.NET status: @@ -12544,18 +13279,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M15.9079563S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M18.7183803S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12564,7 +13299,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:11:03 GMT + - Fri, 15 Jan 2021 15:32:56 GMT expires: - '-1' pragma: @@ -12581,7 +13316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '34' x-powered-by: - ASP.NET status: @@ -12601,18 +13336,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M46.7508044S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M50.1545095S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12621,7 +13356,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:11:34 GMT + - Fri, 15 Jan 2021 15:33:26 GMT expires: - '-1' pragma: @@ -12638,7 +13373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '33' x-powered-by: - ASP.NET status: @@ -12658,18 +13393,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M17.5729418S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M20.6673972S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12678,7 +13413,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:12:05 GMT + - Fri, 15 Jan 2021 15:33:57 GMT expires: - '-1' pragma: @@ -12695,7 +13430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '32' x-powered-by: - ASP.NET status: @@ -12715,27 +13450,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M49.5218382S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M51.254006S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 10:12:36 GMT + - Fri, 15 Jan 2021 15:34:28 GMT expires: - '-1' pragma: @@ -12752,7 +13487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '31' x-powered-by: - ASP.NET status: @@ -12772,18 +13507,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M20.3823161S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M21.9548593S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12792,7 +13527,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:13:08 GMT + - Fri, 15 Jan 2021 15:34:58 GMT expires: - '-1' pragma: @@ -12809,7 +13544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '30' x-powered-by: - ASP.NET status: @@ -12829,18 +13564,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M51.2339249S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M52.4375819S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12849,7 +13584,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:13:38 GMT + - Fri, 15 Jan 2021 15:35:29 GMT expires: - '-1' pragma: @@ -12866,7 +13601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '31' x-powered-by: - ASP.NET status: @@ -12886,18 +13621,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M22.0305283S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M22.9590297S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12906,7 +13641,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:14:09 GMT + - Fri, 15 Jan 2021 15:35:59 GMT expires: - '-1' pragma: @@ -12923,7 +13658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '30' x-powered-by: - ASP.NET status: @@ -12943,18 +13678,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M53.9789195S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M53.5347288S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12963,7 +13698,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:14:41 GMT + - Fri, 15 Jan 2021 15:36:30 GMT expires: - '-1' pragma: @@ -12980,7 +13715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '29' x-powered-by: - ASP.NET status: @@ -13000,18 +13735,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M24.8149428S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M24.0341095S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13020,7 +13755,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:15:12 GMT + - Fri, 15 Jan 2021 15:37:01 GMT expires: - '-1' pragma: @@ -13037,7 +13772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '28' x-powered-by: - ASP.NET status: @@ -13057,27 +13792,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M56.7898316S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M54.53083S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 10:15:44 GMT + - Fri, 15 Jan 2021 15:37:32 GMT expires: - '-1' pragma: @@ -13094,7 +13829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '27' x-powered-by: - ASP.NET status: @@ -13114,18 +13849,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M27.5608713S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M25.0197955S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13134,7 +13869,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:16:14 GMT + - Fri, 15 Jan 2021 15:38:02 GMT expires: - '-1' pragma: @@ -13151,7 +13886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '26' x-powered-by: - ASP.NET status: @@ -13171,18 +13906,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M58.5624166S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M55.6237194S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13191,7 +13926,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:16:46 GMT + - Fri, 15 Jan 2021 15:38:33 GMT expires: - '-1' pragma: @@ -13208,7 +13943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '25' x-powered-by: - ASP.NET status: @@ -13228,18 +13963,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M29.4775834S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M26.1725688S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13248,7 +13983,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:17:17 GMT + - Fri, 15 Jan 2021 15:39:03 GMT expires: - '-1' pragma: @@ -13265,7 +14000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '24' x-powered-by: - ASP.NET status: @@ -13285,27 +14020,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M1.4220687S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M56.7135611S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 10:17:48 GMT + - Fri, 15 Jan 2021 15:39:34 GMT expires: - '-1' pragma: @@ -13322,7 +14057,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '23' x-powered-by: - ASP.NET status: @@ -13342,27 +14077,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M32.310857S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M27.2073279S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 10:18:20 GMT + - Fri, 15 Jan 2021 15:40:04 GMT expires: - '-1' pragma: @@ -13379,7 +14114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '32' x-powered-by: - ASP.NET status: @@ -13399,18 +14134,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M3.1521433S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M58.022541S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13419,7 +14154,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:18:50 GMT + - Fri, 15 Jan 2021 15:40:35 GMT expires: - '-1' pragma: @@ -13436,7 +14171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '31' x-powered-by: - ASP.NET status: @@ -13456,18 +14191,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M34.0683399S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M28.6761805S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13476,7 +14211,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:19:22 GMT + - Fri, 15 Jan 2021 15:41:06 GMT expires: - '-1' pragma: @@ -13493,7 +14228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '30' x-powered-by: - ASP.NET status: @@ -13513,27 +14248,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M4.9238601S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M59.3883317S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 10:19:52 GMT + - Fri, 15 Jan 2021 15:41:36 GMT expires: - '-1' pragma: @@ -13550,7 +14285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '29' x-powered-by: - ASP.NET status: @@ -13570,18 +14305,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M35.7209297S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M30.2083766S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13590,7 +14325,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:20:22 GMT + - Fri, 15 Jan 2021 15:42:07 GMT expires: - '-1' pragma: @@ -13607,7 +14342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '28' x-powered-by: - ASP.NET status: @@ -13627,18 +14362,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M6.5194558S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M0.9011911S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13647,7 +14382,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:20:54 GMT + - Fri, 15 Jan 2021 15:42:38 GMT expires: - '-1' pragma: @@ -13664,7 +14399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '27' x-powered-by: - ASP.NET status: @@ -13684,27 +14419,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M37.368596S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M31.6565004S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 10:21:24 GMT + - Fri, 15 Jan 2021 15:43:09 GMT expires: - '-1' pragma: @@ -13721,7 +14456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '26' x-powered-by: - ASP.NET status: @@ -13741,18 +14476,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M8.1551264S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M2.2343406S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13761,7 +14496,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:21:55 GMT + - Fri, 15 Jan 2021 15:43:39 GMT expires: - '-1' pragma: @@ -13778,7 +14513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '25' x-powered-by: - ASP.NET status: @@ -13798,18 +14533,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M39.9076621S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M32.7985266S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13818,7 +14553,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:22:26 GMT + - Fri, 15 Jan 2021 15:44:09 GMT expires: - '-1' pragma: @@ -13835,7 +14570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '24' x-powered-by: - ASP.NET status: @@ -13855,27 +14590,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M10.7341658S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M3.3790288S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:22:58 GMT + - Fri, 15 Jan 2021 15:44:40 GMT expires: - '-1' pragma: @@ -13892,7 +14627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '23' x-powered-by: - ASP.NET status: @@ -13912,18 +14647,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M41.5244397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M34.1221338S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13932,7 +14667,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:23:29 GMT + - Fri, 15 Jan 2021 15:45:11 GMT expires: - '-1' pragma: @@ -13949,7 +14684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '32' x-powered-by: - ASP.NET status: @@ -13969,27 +14704,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.4338014S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M4.8032257S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T09:02:47.5157261Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-15T14:24:37.3758299Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 10:23:59 GMT + - Fri, 15 Jan 2021 15:45:41 GMT expires: - '-1' pragma: @@ -14006,7 +14741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '31' x-powered-by: - ASP.NET status: @@ -14026,18 +14761,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/279fa819-59bc-490a-ba74-11a0a144ab00?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.9309733S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.5502106S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM","Backup Size":"21442 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T09:02:47.5157261Z","endTime":"2020-12-18T10:24:00.4466994Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}}' + Point Expiry Time in UTC":"2/14/2021 12:00:00 AM","Backup Size":"21438 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-15T14:24:37.3758299Z","endTime":"2021-01-15T15:45:49.9260405Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14046,7 +14781,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:24:31 GMT + - Fri, 15 Jan 2021 15:46:12 GMT expires: - '-1' pragma: @@ -14063,7 +14798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '30' x-powered-by: - ASP.NET status: @@ -14083,25 +14818,25 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","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":"2020-12-18T09:02:51.1460143Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-15T14:24:37.3758299Z","protectedItemDataId":"2260842198294552625","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-01-15T14:24:41.233513Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2342' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:30 GMT + - Fri, 15 Jan 2021 15:47:07 GMT expires: - '-1' pragma: @@ -14137,24 +14872,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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=2020-10-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/2260934094825063697","name":"2260934094825063697","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T09:02:51.1460143Z","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"}}]}' + 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/2261227525387965314","name":"2261227525387965314","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-15T14:24:41.233513Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '1187' + - '1186' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:31 GMT + - Fri, 15 Jan 2021 15:47:08 GMT expires: - '-1' pragma: @@ -14190,25 +14925,25 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","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":"2020-12-18T09:02:51.1460143Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-15T14:24:37.3758299Z","protectedItemDataId":"2260842198294552625","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-01-15T14:24:41.233513Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2342' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:34 GMT + - Fri, 15 Jan 2021 15:47:10 GMT expires: - '-1' pragma: @@ -14244,12 +14979,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -14261,7 +14996,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:36 GMT + - Fri, 15 Jan 2021 15:47:10 GMT expires: - '-1' pragma: @@ -14297,25 +15032,25 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","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":"2020-12-18T09:02:51.1460143Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-15T14:24:37.3758299Z","protectedItemDataId":"2260842198294552625","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-01-15T14:24:41.233513Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2342' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:38 GMT + - Fri, 15 Jan 2021 15:47:11 GMT expires: - '-1' pragma: @@ -14351,12 +15086,12 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -14368,7 +15103,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:40 GMT + - Fri, 15 Jan 2021 15:47:11 GMT expires: - '-1' pragma: @@ -14404,24 +15139,24 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2260934094825063697?api-version=2019-06-15 + 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/2261227525387965314?api-version=2020-10-01 response: body: - string: '{"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/2260934094825063697","name":"2260934094825063697","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T09:02:51.1460143Z","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"}}' + string: '{"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/2261227525387965314","name":"2261227525387965314","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-15T14:24:41.233513Z","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"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1174' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:42 GMT + - Fri, 15 Jan 2021 15:47:12 GMT expires: - '-1' pragma: @@ -14457,15 +15192,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T08%3A59%3A23.2409251Z''\"","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-01-15T14%3A21%3A10.6032135Z''\"","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 @@ -14474,7 +15209,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:44 GMT + - Fri, 15 Jan 2021 15:47:13 GMT expires: - '-1' pragma: @@ -14506,8 +15241,8 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -14525,7 +15260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:25:45 GMT + - Fri, 15 Jan 2021 15:47:14 GMT expires: - '-1' pragma: @@ -14553,15 +15288,15 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000006?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000006","name":"clitest000006","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T10:25:08.6452561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T10:25:08.5827309Z","primaryEndpoints":{"blob":"https://clitest000006.blob.core.windows.net/","queue":"https://clitest000006.queue.core.windows.net/","table":"https://clitest000006.table.core.windows.net/","file":"https://clitest000006.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000006","name":"clitest000006","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-15T15:46:46.9316475Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-15T15:46:46.8691263Z","primaryEndpoints":{"blob":"https://clitest000006.blob.core.windows.net/","queue":"https://clitest000006.queue.core.windows.net/","table":"https://clitest000006.table.core.windows.net/","file":"https://clitest000006.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -14570,7 +15305,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:45 GMT + - Fri, 15 Jan 2021 15:47:14 GMT expires: - '-1' pragma: @@ -14590,7 +15325,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2260934094825063697", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "2261227525387965314", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000006", "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": false}}' @@ -14610,28 +15345,28 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/recoveryPoints/2260934094825063697/restore?api-version=2019-06-15 + 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/2261227525387965314/restore?api-version=2020-10-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/2c168b5c-a373-4ee9-b401-2a979a90125c?api-version=2019-06-15 + - 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/9fa53bd4-0689-4ffc-abc7-0c96c5d578de?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:25:48 GMT + - Fri, 15 Jan 2021 15:47: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/2c168b5c-a373-4ee9-b401-2a979a90125c?api-version=2019-06-15 + - 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/9fa53bd4-0689-4ffc-abc7-0c96c5d578de?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -14659,24 +15394,24 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2c168b5c-a373-4ee9-b401-2a979a90125c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9fa53bd4-0689-4ffc-abc7-0c96c5d578de?api-version=2020-10-01 response: body: - string: '{"id":"2c168b5c-a373-4ee9-b401-2a979a90125c","name":"2c168b5c-a373-4ee9-b401-2a979a90125c","status":"Succeeded","startTime":"2020-12-18T10:25:48.8184948Z","endTime":"2020-12-18T10:25:48.8184948Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c1593a4c-5bec-46ca-8183-153d6c777c8e"}}' + string: '{"id":"9fa53bd4-0689-4ffc-abc7-0c96c5d578de","name":"9fa53bd4-0689-4ffc-abc7-0c96c5d578de","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:50 GMT + - Fri, 15 Jan 2021 15:47:15 GMT expires: - '-1' pragma: @@ -14712,27 +15447,80 @@ interactions: ParameterSetName: - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9fa53bd4-0689-4ffc-abc7-0c96c5d578de?api-version=2020-10-01 + response: + body: + string: '{"id":"9fa53bd4-0689-4ffc-abc7-0c96c5d578de","name":"9fa53bd4-0689-4ffc-abc7-0c96c5d578de","status":"Succeeded","startTime":"2021-01-15T15:47:15.7686381Z","endTime":"2021-01-15T15:47:15.7686381Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d169bd24-6620-427f-867d-2b1fdbe6320c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 15:47: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c1593a4c-5bec-46ca-8183-153d6c777c8e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.7026666S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.3648653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000006","Recovery - point time ":"12/18/2020 9:02:51 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000006","Recovery + point time ":"1/15/2021 2:24:41 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1137' + - '1198' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:51 GMT + - Fri, 15 Jan 2021 15:47:18 GMT expires: - '-1' pragma: @@ -14749,7 +15537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -14769,27 +15557,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c1593a4c-5bec-46ca-8183-153d6c777c8e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.1856934S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.3142636S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000006","Recovery - point time ":"12/18/2020 9:02:51 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000006","Recovery + point time ":"1/15/2021 2:24:41 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1137' + - '1198' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:54 GMT + - Fri, 15 Jan 2021 15:47:18 GMT expires: - '-1' pragma: @@ -14826,15 +15614,15 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.7326741S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/279fa819-59bc-490a-ba74-11a0a144ab00","name":"279fa819-59bc-490a-ba74-11a0a144ab00","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.9309733S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T09:02:47.5157261Z","endTime":"2020-12-18T10:24:00.4466994Z","activityId":"c9d83288-410f-11eb-9a8d-c03eba45757e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f0acbde6-9653-46fe-9ec4-eee97826816a","name":"f0acbde6-9653-46fe-9ec4-eee97826816a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7727323S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T09:01:09.0524595Z","endTime":"2020-12-18T09:02:40.8251918Z","activityId":"8266c8da-410f-11eb-9b2e-c03eba45757e"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.4353619S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9b75d285-96d0-438a-be27-4d7535f9eb2e","name":"9b75d285-96d0-438a-be27-4d7535f9eb2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.5502106S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-15T14:24:37.3758299Z","endTime":"2021-01-15T15:45:49.9260405Z","activityId":"65147141-573d-11eb-98ff-c8f750f92764"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/13158be9-c8dc-416c-95f4-ad2e1f2d7b9f","name":"13158be9-c8dc-416c-95f4-ad2e1f2d7b9f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.6190801S","virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:23:03.0943754Z","endTime":"2021-01-15T14:24:34.7134555Z","activityId":"23a5b4e9-573d-11eb-9319-c8f750f92764"}}]}' headers: cache-control: - no-cache @@ -14843,7 +15631,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:56 GMT + - Fri, 15 Jan 2021 15:47:20 GMT expires: - '-1' pragma: @@ -14880,15 +15668,15 @@ interactions: ParameterSetName: - -g -v --status User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15&$filter=status%20eq%20%27InProgress%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs?api-version=2020-10-01&$filter=status%20eq%20%27InProgress%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9.5857671S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5.5355126S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}}]}' headers: cache-control: - no-cache @@ -14897,7 +15685,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:57 GMT + - Fri, 15 Jan 2021 15:47:21 GMT expires: - '-1' pragma: @@ -14934,24 +15722,24 @@ interactions: ParameterSetName: - -g -v --operation User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15&$filter=operation%20eq%20%27Restore%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs?api-version=2020-10-01&$filter=operation%20eq%20%27Restore%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.4701122S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.6911097S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}}]}' headers: cache-control: - no-cache content-length: - - '844' + - '843' content-type: - application/json date: - - Fri, 18 Dec 2020 10:25:59 GMT + - Fri, 15 Jan 2021 15:47:22 GMT expires: - '-1' pragma: @@ -14988,24 +15776,24 @@ interactions: ParameterSetName: - -g -v --operation --status User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15&$filter=operation%20eq%20%27Restore%27%20and%20status%20eq%20%27InProgress%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs?api-version=2020-10-01&$filter=operation%20eq%20%27Restore%27%20and%20status%20eq%20%27InProgress%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e","name":"c1593a4c-5bec-46ca-8183-153d6c777c8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13.4871542S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T10:25:48.8184948Z","activityId":"5baa1e49-411b-11eb-a33f-c03eba45757e"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c","name":"d169bd24-6620-427f-867d-2b1fdbe6320c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.1465232S","actionsInfo":[1],"virtualMachineVersion":"Compute","entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-15T15:47:15.7686381Z","activityId":"ecfd71fb-5748-11eb-b120-c8f750f92764"}}]}' headers: cache-control: - no-cache content-length: - - '844' + - '843' content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:01 GMT + - Fri, 15 Jan 2021 15:47:22 GMT expires: - '-1' pragma: @@ -15022,7 +15810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -15044,28 +15832,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e/cancel?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c/cancel?api-version=2020-10-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/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e/operationsStatus/244be3b4-523f-4b7d-84aa-2047bdf7af2f?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/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c/operationsStatus/37cdcfd8-c3a2-47e3-b7f5-62515c8c1587?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:26:04 GMT + - Fri, 15 Jan 2021 15:47:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c1593a4c-5bec-46ca-8183-153d6c777c8e/operationResults/244be3b4-523f-4b7d-84aa-2047bdf7af2f?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d169bd24-6620-427f-867d-2b1fdbe6320c/operationResults/37cdcfd8-c3a2-47e3-b7f5-62515c8c1587?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -15093,12 +15881,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -15110,7 +15898,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:05 GMT + - Fri, 15 Jan 2021 15:47:24 GMT expires: - '-1' pragma: @@ -15146,26 +15934,26 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job is cancelled.","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":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","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":"2020-12-18T09:02:51.1460143Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-15T14:24:37.3758299Z","protectedItemDataId":"2260842198294552625","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-01-15T14:24:41.233513Z"}}]}' headers: cache-control: - no-cache content-length: - - '2553' + - '2552' content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:08 GMT + - Fri, 15 Jan 2021 15:47:24 GMT expires: - '-1' pragma: @@ -15202,26 +15990,26 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job is cancelled.","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":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","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":"2020-12-18T09:02:51.1460143Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-15T14:24:37.3758299Z","protectedItemDataId":"2260842198294552625","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-01-15T14:24:41.233513Z"}}]}' headers: cache-control: - no-cache content-length: - - '2553' + - '2552' content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:09 GMT + - Fri, 15 Jan 2021 15:47:25 GMT expires: - '-1' pragma: @@ -15237,7 +16025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -15260,28 +16048,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:26:12 GMT + - Fri, 15 Jan 2021 15:47:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -15289,7 +16077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -15310,15 +16098,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15327,7 +16115,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:14 GMT + - Fri, 15 Jan 2021 15:47:25 GMT expires: - '-1' pragma: @@ -15364,15 +16152,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15381,7 +16169,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:15 GMT + - Fri, 15 Jan 2021 15:47:27 GMT expires: - '-1' pragma: @@ -15418,15 +16206,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15435,7 +16223,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:17 GMT + - Fri, 15 Jan 2021 15:47:29 GMT expires: - '-1' pragma: @@ -15472,15 +16260,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15489,7 +16277,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:18 GMT + - Fri, 15 Jan 2021 15:47:30 GMT expires: - '-1' pragma: @@ -15526,15 +16314,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15543,7 +16331,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:20 GMT + - Fri, 15 Jan 2021 15:47:31 GMT expires: - '-1' pragma: @@ -15580,15 +16368,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15597,7 +16385,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:21 GMT + - Fri, 15 Jan 2021 15:47:33 GMT expires: - '-1' pragma: @@ -15634,15 +16422,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"InProgress","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -15651,7 +16439,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:23 GMT + - Fri, 15 Jan 2021 15:47:34 GMT expires: - '-1' pragma: @@ -15688,24 +16476,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/deaa8e63-1338-4142-9a94-502238c1017e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 response: body: - string: '{"id":"deaa8e63-1338-4142-9a94-502238c1017e","name":"deaa8e63-1338-4142-9a94-502238c1017e","status":"Succeeded","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"2020-12-18T10:26:12.4068784Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a2a9f836-f00e-4a6e-b52e-82476aafc425"}}' + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:24 GMT + - Fri, 15 Jan 2021 15:47:35 GMT expires: - '-1' pragma: @@ -15742,16 +16530,124 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 + response: + body: + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"InProgress","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 15:47: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/71f455e3-9ddb-436a-9b00-697f6feda471?api-version=2020-10-01 + response: + body: + string: '{"id":"71f455e3-9ddb-436a-9b00-697f6feda471","name":"71f455e3-9ddb-436a-9b00-697f6feda471","status":"Succeeded","startTime":"2021-01-15T15:47:26.0631991Z","endTime":"2021-01-15T15:47:26.0631991Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7b061cd4-54e3-4efa-9790-7a3e3c7a03aa"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 15:47: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a2a9f836-f00e-4a6e-b52e-82476aafc425?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7b061cd4-54e3-4efa-9790-7a3e3c7a03aa?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a2a9f836-f00e-4a6e-b52e-82476aafc425","name":"a2a9f836-f00e-4a6e-b52e-82476aafc425","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.5467213S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T10:26:12.4068784Z","endTime":"2020-12-18T10:26:23.9535997Z","activityId":"71149870-411b-11eb-a020-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7b061cd4-54e3-4efa-9790-7a3e3c7a03aa","name":"7b061cd4-54e3-4efa-9790-7a3e3c7a03aa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.7049846S","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-01-15T15:47:26.0631991Z","endTime":"2021-01-15T15:47:37.7681837Z","activityId":"f6843a5e-5748-11eb-8c8f-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15760,7 +16656,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:26 GMT + - Fri, 15 Jan 2021 15:47:39 GMT expires: - '-1' pragma: @@ -15777,7 +16673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '24' x-powered-by: - ASP.NET status: @@ -15799,8 +16695,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -15825,7 +16721,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:30 GMT + - Fri, 15 Jan 2021 15:47:40 GMT pragma: - no-cache server: 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 620c8c8351a..c4b7dca2107 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 @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A26%3A49.8987566Z''\"","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-01-15T14%3A10%3A03.5510424Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:51 GMT + - Fri, 15 Jan 2021 14:10:03 GMT expires: - '-1' pragma: @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:52 GMT + - Fri, 15 Jan 2021 14:10:04 GMT expires: - '-1' pragma: @@ -106,9 +106,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-12-18T20:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-16T00:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-12-18T20:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-16T00:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": "UTC"}}' headers: @@ -127,15 +127,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-item000003?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20: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/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -144,7 +144,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:55 GMT + - Fri, 15 Jan 2021 14:10:05 GMT expires: - '-1' pragma: @@ -160,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -180,15 +180,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -197,7 +197,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:26:57 GMT + - Fri, 15 Jan 2021 14:10:05 GMT expires: - '-1' pragma: @@ -222,9 +222,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", "instantRPDetails": {}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-12-18T20:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-16T00:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-12-18T20:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-01-16T00:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 3, "timeZone": "UTC"}}' headers: @@ -243,15 +243,15 @@ interactions: ParameterSetName: - -g -v --policy User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-item000004?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -260,7 +260,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:27:00 GMT + - Fri, 15 Jan 2021 14:10:06 GMT expires: - '-1' pragma: @@ -296,15 +296,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T10:26:36Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -313,7 +313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:27:00 GMT + - Fri, 15 Jan 2021 14:10:07 GMT expires: - '-1' pragma: @@ -392,35 +392,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 10:27:01 GMT + - Fri, 15 Jan 2021 14:10:07 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 10:32:01 GMT + - Fri, 15 Jan 2021 14:15:07 GMT source-age: - - '230' + - '221' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - HIT, HIT x-cache-hits: - - 2, 0 + - 2, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 7bdcdd028cfd1724f804f71e2041af83eca069b8 + - 3c283abdc6d29fad83de62951a005a0bb0917177 x-frame-options: - deny x-github-request-id: - - D920:4F30:C02CD:DA7F4:5FDC83F1 + - 345C:61E7:B60E8:C0857:60017CFC x-served-by: - - cache-mia11370-MIA + - cache-sin18026-SIN x-timer: - - S1608287221.994569,VS0,VE26 + - S1610719808.725600,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -430,7 +430,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -440,10 +440,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -457,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:27:01 GMT + - Fri, 15 Jan 2021 14:10:07 GMT expires: - '-1' pragma: @@ -525,18 +522,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_1DWS9ZZbwlucB8iie1cAXsfn0wc1oC5s","name":"vm_deploy_1DWS9ZZbwlucB8iie1cAXsfn0wc1oC5s","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4020929785105698626","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T10:27:08.1424316Z","duration":"PT3.3101814S","correlationId":"80f8c5b9-977b-4788-b5db-8f51130fc7e7","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-vm000005VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000005VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000005PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000005"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bnxUpeQvrnIVbfVZWpGy5Upj3AnqoM4g","name":"vm_deploy_bnxUpeQvrnIVbfVZWpGy5Upj3AnqoM4g","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7625025841016109366","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:10:09.9034855Z","duration":"PT1.1893316S","correlationId":"adb7c8be-d1e9-4230-b64e-1f8d878db452","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-vm000005VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000005VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000005PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000005"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1DWS9ZZbwlucB8iie1cAXsfn0wc1oC5s/operationStatuses/08585933196606453825?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bnxUpeQvrnIVbfVZWpGy5Upj3AnqoM4g/operationStatuses/08585908870767634783?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -544,7 +541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:27:09 GMT + - Fri, 15 Jan 2021 14:10:09 GMT expires: - '-1' pragma: @@ -554,7 +551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -572,10 +569,53 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870767634783?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: + - Fri, 15 Jan 2021 14:10:40 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933196606453825?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870767634783?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -587,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:27:40 GMT + - Fri, 15 Jan 2021 14:11:10 GMT expires: - '-1' pragma: @@ -615,10 +655,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933196606453825?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870767634783?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -630,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:11 GMT + - Fri, 15 Jan 2021 14:11:40 GMT expires: - '-1' pragma: @@ -658,10 +698,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933196606453825?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870767634783?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -673,7 +713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:42 GMT + - Fri, 15 Jan 2021 14:12:10 GMT expires: - '-1' pragma: @@ -701,13 +741,13 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_1DWS9ZZbwlucB8iie1cAXsfn0wc1oC5s","name":"vm_deploy_1DWS9ZZbwlucB8iie1cAXsfn0wc1oC5s","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4020929785105698626","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T10:28:21.1679909Z","duration":"PT1M16.3357407S","correlationId":"80f8c5b9-977b-4788-b5db-8f51130fc7e7","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-vm000005VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000005VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000005PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000005"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000005VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_bnxUpeQvrnIVbfVZWpGy5Upj3AnqoM4g","name":"vm_deploy_bnxUpeQvrnIVbfVZWpGy5Upj3AnqoM4g","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7625025841016109366","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:11:51.0942201Z","duration":"PT1M42.3800662S","correlationId":"adb7c8be-d1e9-4230-b64e-1f8d878db452","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-vm000005VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000005VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000005PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000005VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000005"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000005NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000005VNET"}]}}' headers: cache-control: - no-cache @@ -716,7 +756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:42 GMT + - Fri, 15 Jan 2021 14:12:10 GMT expires: - '-1' pragma: @@ -744,7 +784,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000005?$expand=instanceView&api-version=2020-06-01 response: @@ -753,16 +793,16 @@ interactions: \ \"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\": \"43f5d209-3a3c-4404-b9a5-f73d72a9552e\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"280cd399-6ab3-45e9-87b8-1ec6d2f7121a\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000005_disk1_deec27c154ce477db44ea4949b73956d\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\",\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-vm000005_disk1_deec27c154ce477db44ea4949b73956d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000005\",\r\n \ \"adminUsername\": \"clitest-vm000005\",\r\n \"windowsConfiguration\": @@ -776,16 +816,16 @@ interactions: \ {\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\": \"2020-12-18T10:28:44+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:12:12+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000005_disk1_deec27c154ce477db44ea4949b73956d\",\r\n \"statuses\": + \"clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:27:51.2992243+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:30.7736297+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:28:17.9402617+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:11:47.648095+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}" @@ -793,11 +833,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3427' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:44 GMT + - Fri, 15 Jan 2021 14:12:11 GMT expires: - '-1' pragma: @@ -814,7 +854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31987 + - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31973 status: code: 200 message: OK @@ -822,7 +862,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -832,23 +872,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000005VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000005VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic\",\r\n - \ \"etag\": \"W/\\\"f5d1017e-06de-48fe-b1da-0ca60abb1444\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"5a8a8d11-2a09-4bb2-9eb0-dbbe1152abbe\\\"\",\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\": \"9d87499f-b4b5-40ad-9e87-fe613d625940\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7bc4bb92-592a-4aa4-9de8-675157fbf80c\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000005\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic/ipConfigurations/ipconfigclitest-vm000005\",\r\n - \ \"etag\": \"W/\\\"f5d1017e-06de-48fe-b1da-0ca60abb1444\\\"\",\r\n + \ \"etag\": \"W/\\\"5a8a8d11-2a09-4bb2-9eb0-dbbe1152abbe\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -857,8 +894,8 @@ interactions: \ },\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\": - \"32kq0nujaxjuzbghcl5oc2fwkg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-B4-4A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"txa0cqyous2u5ayhscpkvnarfd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-16-45\",\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-vm000005NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -872,9 +909,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:44 GMT + - Fri, 15 Jan 2021 14:12:12 GMT etag: - - W/"f5d1017e-06de-48fe-b1da-0ca60abb1444" + - W/"5a8a8d11-2a09-4bb2-9eb0-dbbe1152abbe" expires: - '-1' pragma: @@ -891,7 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c05b2e1-4ad2-4e65-9afa-5e33d6772ba9 + - 9e0706c7-e985-4754-8fb8-af5c0f1feefd status: code: 200 message: OK @@ -899,7 +936,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -909,22 +946,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000005PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000005PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000005PublicIP\",\r\n - \ \"etag\": \"W/\\\"cc82e106-662c-4772-b490-e7ad9002bdb8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6fee7ded-1d1d-4bf7-9119-fce4be31e436\\\"\",\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\": \"cc2afeba-12e8-4f73-9a6e-d529b36bd051\",\r\n - \ \"ipAddress\": \"104.215.158.180\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"6bdb1e42-ad30-42cd-81a3-1d5f647d8d1c\",\r\n + \ \"ipAddress\": \"13.76.133.141\",\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-vm000005VMNic/ipConfigurations/ipconfigclitest-vm000005\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -932,13 +966,13 @@ interactions: cache-control: - no-cache content-length: - - '1184' + - '1182' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:45 GMT + - Fri, 15 Jan 2021 14:12:13 GMT etag: - - W/"cc82e106-662c-4772-b490-e7ad9002bdb8" + - W/"6fee7ded-1d1d-4bf7-9119-fce4be31e436" expires: - '-1' pragma: @@ -955,7 +989,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4b4e27c-7646-4771-a4a4-4b87838c3a88 + - 9508a65a-9947-4548-aaee-b2e14e24c1b5 status: code: 200 message: OK @@ -973,15 +1007,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T10:26:36Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -990,7 +1024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:45 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -1069,35 +1103,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:46 GMT + - Fri, 15 Jan 2021 14:12:13 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 10:33:46 GMT + - Fri, 15 Jan 2021 14:17:13 GMT source-age: - - '57' + - '35' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - HIT, HIT x-cache-hits: - - 2, 0 + - 1, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 86f10abbd7b8dd708e239b1e0e1d801d717cc027 + - f37b51748ea3bfa19c0c0b198f9f8bdb6864c86d x-frame-options: - deny x-github-request-id: - - D920:4F30:C02CD:DA7F4:5FDC83F1 + - 6C9A:5FEB:DAEB8:E6B82:6001A2BD x-served-by: - - cache-mia11367-MIA + - cache-sin18020-SIN x-timer: - - S1608287326.052543,VS0,VE26 + - S1610719933.432081,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -1107,7 +1141,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1117,27 +1151,24 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: "{\r\n \"value\": [\r\n {\r\n \"name\": \"clitest-vm000005VNET\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000005VNET\",\r\n - \ \"etag\": \"W/\\\"fe9e3488-5b37-419b-8ac4-994283a34ea2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ddb5463c-6826-484c-8938-d49a4c42e4d2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\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\": - \"360d15ef-0589-4cd3-84c7-12fee170b656\",\r\n \"addressSpace\": {\r\n + \"43a1c19d-a40e-4fb9-8307-909eaab4112b\",\r\n \"addressSpace\": {\r\n \ \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"subnets\": [\r\n {\r\n \"name\": \"clitest-vm000005Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000005VNET/subnets/clitest-vm000005Subnet\",\r\n - \ \"etag\": \"W/\\\"fe9e3488-5b37-419b-8ac4-994283a34ea2\\\"\",\r\n + \ \"etag\": \"W/\\\"ddb5463c-6826-484c-8938-d49a4c42e4d2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000005VMNic/ipConfigurations/ipconfigclitest-vm000005\"\r\n @@ -1153,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:46 GMT + - Fri, 15 Jan 2021 14:12:12 GMT expires: - '-1' pragma: @@ -1170,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 278e1727-db41-494e-89ef-976b8baa8465 + - 71c382b4-0e5b-40d3-8013-cc08eb22e12c status: code: 200 message: OK @@ -1222,26 +1253,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_mBaO9JRGKWg5CbJX71Kd0Bx3qDK2BGBF","name":"vm_deploy_mBaO9JRGKWg5CbJX71Kd0Bx3qDK2BGBF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6585382174226199117","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T10:28:54.2783851Z","duration":"PT4.241425S","correlationId":"dee7ba8b-bd6c-4ee8-a968-424561442bc0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000006"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_rJHoFOLcqqA451h178BhjNWm1y5V10Cw","name":"vm_deploy_rJHoFOLcqqA451h178BhjNWm1y5V10Cw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1717056730025464876","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:12:16.3406625Z","duration":"PT1.4503497S","correlationId":"657066b0-fc26-4d7f-b744-8cb09d3d4263","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000006"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mBaO9JRGKWg5CbJX71Kd0Bx3qDK2BGBF/operationStatuses/08585933195554406644?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_rJHoFOLcqqA451h178BhjNWm1y5V10Cw/operationStatuses/08585908869505873135?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2590' + - '2591' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:28:56 GMT + - Fri, 15 Jan 2021 14:12:16 GMT expires: - '-1' pragma: @@ -1251,7 +1282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1269,10 +1300,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505873135?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: + - Fri, 15 Jan 2021 14:12:46 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505873135?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: + - Fri, 15 Jan 2021 14:13: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: 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933195554406644?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505873135?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1284,7 +1401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:29:26 GMT + - Fri, 15 Jan 2021 14:13:47 GMT expires: - '-1' pragma: @@ -1312,10 +1429,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933195554406644?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908869505873135?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1327,7 +1444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:29:57 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1355,22 +1472,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_mBaO9JRGKWg5CbJX71Kd0Bx3qDK2BGBF","name":"vm_deploy_mBaO9JRGKWg5CbJX71Kd0Bx3qDK2BGBF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6585382174226199117","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T10:29:46.5188521Z","duration":"PT56.481892S","correlationId":"dee7ba8b-bd6c-4ee8-a968-424561442bc0","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_rJHoFOLcqqA451h178BhjNWm1y5V10Cw","name":"vm_deploy_rJHoFOLcqqA451h178BhjNWm1y5V10Cw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1717056730025464876","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:13:56.0108692Z","duration":"PT1M41.1205564S","correlationId":"657066b0-fc26-4d7f-b744-8cb09d3d4263","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/networkSecurityGroups/clitest-vm000006NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000006PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000006VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000006"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000006NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3499' + - '3502' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:29:58 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -1398,7 +1515,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000006?$expand=instanceView&api-version=2020-06-01 response: @@ -1407,16 +1524,16 @@ interactions: \ \"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\": \"b1a49f1d-37fc-4cf8-96d4-611a230e46ea\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b2867f63-ce12-4df0-a71e-57591daa9c0b\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000006_disk1_f9cefd061951401c98c8a893e3727187\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\",\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-vm000006_disk1_f9cefd061951401c98c8a893e3727187\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000006\",\r\n \ \"adminUsername\": \"clitest-vm000006\",\r\n \"windowsConfiguration\": @@ -1430,16 +1547,16 @@ interactions: \ {\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\": \"2020-12-18T10:30:00+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:14:19+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000006_disk1_f9cefd061951401c98c8a893e3727187\",\r\n \"statuses\": + \"clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:29:18.6129225+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:12:39.7414186+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:29:45.2695794+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:13:54.0531114+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}" @@ -1447,11 +1564,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:29:59 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1468,7 +1585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31984 + - Microsoft.Compute/LowCostGet3Min;3922,Microsoft.Compute/LowCostGet30Min;31922 status: code: 200 message: OK @@ -1476,7 +1593,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1486,23 +1603,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000006VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000006VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic\",\r\n - \ \"etag\": \"W/\\\"ecf8a08a-f459-40cb-b029-f448d7cb7dc4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d56ac7f6-3bad-46db-83e7-fa8937516ee8\\\"\",\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\": \"9bf10536-ee40-438b-9f95-499e15608313\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"1e647549-d16a-461a-bea9-310db8ccf538\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000006VMNic/ipConfigurations/ipconfigclitest-vm000006\",\r\n - \ \"etag\": \"W/\\\"ecf8a08a-f459-40cb-b029-f448d7cb7dc4\\\"\",\r\n + \ \"etag\": \"W/\\\"d56ac7f6-3bad-46db-83e7-fa8937516ee8\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -1511,8 +1625,8 @@ interactions: \ },\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\": - \"32kq0nujaxjuzbghcl5oc2fwkg.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-57-3D-3D\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"txa0cqyous2u5ayhscpkvnarfd.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C9-14-D5\",\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-vm000006NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1526,9 +1640,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:29:59 GMT + - Fri, 15 Jan 2021 14:14:18 GMT etag: - - W/"ecf8a08a-f459-40cb-b029-f448d7cb7dc4" + - W/"d56ac7f6-3bad-46db-83e7-fa8937516ee8" expires: - '-1' pragma: @@ -1545,7 +1659,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6557ef21-e47e-4aa0-af76-00ff13663552 + - b35f6758-f1c5-4536-a08b-ca712d860a61 status: code: 200 message: OK @@ -1553,7 +1667,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1563,21 +1677,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000006PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000006PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000006PublicIP\",\r\n - \ \"etag\": \"W/\\\"fe3b5465-c306-42bf-9dfc-6f099332880b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"bf2d23f8-1334-4799-b10e-ef89424ca272\\\"\",\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\": \"cecd6f68-eb5e-4cfd-81d7-bc4ae4b75a7b\",\r\n - \ \"ipAddress\": \"52.187.128.74\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"3303dbc9-6ef9-4e7a-b5f1-9fe9153fe69f\",\r\n + \ \"ipAddress\": \"13.76.134.189\",\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-vm000006VMNic/ipConfigurations/ipconfigclitest-vm000006\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1590,9 +1701,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:30:00 GMT + - Fri, 15 Jan 2021 14:14:18 GMT etag: - - W/"fe3b5465-c306-42bf-9dfc-6f099332880b" + - W/"bf2d23f8-1334-4799-b10e-ef89424ca272" expires: - '-1' pragma: @@ -1609,7 +1720,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4eb6a15a-75d0-4062-9648-cbd6f3753a7c + - 38fa2128-1262-4a7a-b0f4-8d2a8b45b154 status: code: 200 message: OK @@ -1627,7 +1738,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000005?$expand=instanceView&api-version=2020-06-01 response: @@ -1636,16 +1747,16 @@ interactions: \ \"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\": \"43f5d209-3a3c-4404-b9a5-f73d72a9552e\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"280cd399-6ab3-45e9-87b8-1ec6d2f7121a\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000005_disk1_deec27c154ce477db44ea4949b73956d\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\",\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-vm000005_disk1_deec27c154ce477db44ea4949b73956d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000005\",\r\n \ \"adminUsername\": \"clitest-vm000005\",\r\n \"windowsConfiguration\": @@ -1661,15 +1772,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T10:29:51+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000005_disk1_deec27c154ce477db44ea4949b73956d\",\r\n + \ \"time\": \"2021-01-15T14:14:19+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000005_OsDisk_1_55c3dd1788ab4d859f19e6ba7a73d456\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:27:51.2992243+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:10:30.7736297+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\": \"2020-12-18T10:28:17.9402617+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:11:47.648095+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}" @@ -1677,11 +1788,11 @@ interactions: cache-control: - no-cache content-length: - - '3573' + - '3581' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:30:01 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1698,7 +1809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31983 + - Microsoft.Compute/LowCostGet3Min;3919,Microsoft.Compute/LowCostGet30Min;31919 status: code: 200 message: OK @@ -1716,15 +1827,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T10%3A26%3A49.8987566Z''\"","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-01-15T14%3A10%3A03.5510424Z''\"","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 @@ -1733,7 +1844,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:01 GMT + - Fri, 15 Jan 2021 14:14:19 GMT expires: - '-1' pragma: @@ -1765,15 +1876,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20: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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -1782,7 +1893,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:04 GMT + - Fri, 15 Jan 2021 14:14:20 GMT expires: - '-1' pragma: @@ -1818,24 +1929,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmshhfn","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmshhfn","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmeardw","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmeardw","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-vm000005/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000005","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '7856' content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:06 GMT + - Fri, 15 Jan 2021 14:14:21 GMT expires: - '-1' pragma: @@ -1868,48 +1979,52 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmshhfn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmshhfn","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmshhfn","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmeardw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmeardw","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmeardw","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-vm000005/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000005","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp/protectableItems/vm;iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","name":"iaasvmcontainerv2;clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q;clitest-vmqiwgp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q/providers/Microsoft.Compute/virtualMachines/clitest-vmqiwgp","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwfgixfokth3emyn3bzosontqo5zvlkeesa45x5uptw4f6cnnti5juza6pfc6yig7q","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmqiwgp","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '7856' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:30:07 GMT + - Fri, 15 Jan 2021 14:14: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005", + "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 @@ -1919,37 +2034,43 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + 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-vm000005/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000005?api-version=2020-10-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-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationsStatus/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:30:09 GMT + - Fri, 15 Jan 2021 14:14: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + - 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-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationResults/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-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-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -1969,39 +2090,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:30:11 GMT + - Fri, 15 Jan 2021 14:14: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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' + - '78' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2016,39 +2143,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:30:13 GMT + - Fri, 15 Jan 2021 14:14: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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: - - '147' + - '77' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2063,39 +2196,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:30:14 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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: - - '146' + - '76' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2110,284 +2249,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:30:16 GMT + - Fri, 15 Jan 2021 14:14: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 10:30: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 10:30: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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/4ae23e30-5b05-4d33-9484-772370af4345?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Fri, 18 Dec 2020 10:30:20 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: - - '142' - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2016-12-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-vm000005/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000005","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-vm000006/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000006","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2531' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 10:30: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' + - '75' 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-vm000005", - "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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.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-vm000005/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000005?api-version=2019-06-15 - 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-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationsStatus/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2019-06-15 - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 10:30: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005/operationResults/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2019-06-15 - 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: @@ -2402,15 +2302,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2419,7 +2319,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:27 GMT + - Fri, 15 Jan 2021 14:14:28 GMT expires: - '-1' pragma: @@ -2435,7 +2335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '74' x-powered-by: - ASP.NET status: @@ -2455,15 +2355,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2472,7 +2372,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:29 GMT + - Fri, 15 Jan 2021 14:14:29 GMT expires: - '-1' pragma: @@ -2488,7 +2388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '73' x-powered-by: - ASP.NET status: @@ -2508,15 +2408,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2525,7 +2425,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:30 GMT + - Fri, 15 Jan 2021 14:14:30 GMT expires: - '-1' pragma: @@ -2541,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '72' x-powered-by: - ASP.NET status: @@ -2561,15 +2461,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2578,7 +2478,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:32 GMT + - Fri, 15 Jan 2021 14:14:31 GMT expires: - '-1' pragma: @@ -2594,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '71' x-powered-by: - ASP.NET status: @@ -2614,15 +2514,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2631,7 +2531,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:33 GMT + - Fri, 15 Jan 2021 14:14:33 GMT expires: - '-1' pragma: @@ -2647,7 +2547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '70' x-powered-by: - ASP.NET status: @@ -2667,15 +2567,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2684,7 +2584,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:35 GMT + - Fri, 15 Jan 2021 14:14:34 GMT expires: - '-1' pragma: @@ -2700,7 +2600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '69' x-powered-by: - ASP.NET status: @@ -2720,15 +2620,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2737,7 +2637,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:36 GMT + - Fri, 15 Jan 2021 14:14:35 GMT expires: - '-1' pragma: @@ -2753,7 +2653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '68' x-powered-by: - ASP.NET status: @@ -2773,15 +2673,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2790,7 +2690,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:38 GMT + - Fri, 15 Jan 2021 14:14:37 GMT expires: - '-1' pragma: @@ -2806,7 +2706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '67' x-powered-by: - ASP.NET status: @@ -2826,15 +2726,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2843,7 +2743,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:39 GMT + - Fri, 15 Jan 2021 14:14:38 GMT expires: - '-1' pragma: @@ -2859,7 +2759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '66' x-powered-by: - ASP.NET status: @@ -2879,15 +2779,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2896,7 +2796,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:41 GMT + - Fri, 15 Jan 2021 14:14:39 GMT expires: - '-1' pragma: @@ -2912,7 +2812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '65' x-powered-by: - ASP.NET status: @@ -2932,15 +2832,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2949,7 +2849,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:42 GMT + - Fri, 15 Jan 2021 14:14:40 GMT expires: - '-1' pragma: @@ -2965,7 +2865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '64' x-powered-by: - ASP.NET status: @@ -2985,15 +2885,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3002,7 +2902,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:44 GMT + - Fri, 15 Jan 2021 14:14:42 GMT expires: - '-1' pragma: @@ -3018,7 +2918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '63' x-powered-by: - ASP.NET status: @@ -3038,15 +2938,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3055,7 +2955,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:45 GMT + - Fri, 15 Jan 2021 14:14:43 GMT expires: - '-1' pragma: @@ -3071,7 +2971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '62' x-powered-by: - ASP.NET status: @@ -3091,15 +2991,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3108,7 +3008,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:47 GMT + - Fri, 15 Jan 2021 14:14:44 GMT expires: - '-1' pragma: @@ -3124,7 +3024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '61' x-powered-by: - ASP.NET status: @@ -3144,15 +3044,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3161,7 +3061,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:48 GMT + - Fri, 15 Jan 2021 14:14:45 GMT expires: - '-1' pragma: @@ -3177,7 +3077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '60' x-powered-by: - ASP.NET status: @@ -3197,15 +3097,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3214,7 +3114,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:50 GMT + - Fri, 15 Jan 2021 14:14:47 GMT expires: - '-1' pragma: @@ -3230,7 +3130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '59' x-powered-by: - ASP.NET status: @@ -3250,15 +3150,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3267,7 +3167,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:51 GMT + - Fri, 15 Jan 2021 14:14:48 GMT expires: - '-1' pragma: @@ -3283,7 +3183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '58' x-powered-by: - ASP.NET status: @@ -3303,15 +3203,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3320,7 +3220,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:53 GMT + - Fri, 15 Jan 2021 14:14:49 GMT expires: - '-1' pragma: @@ -3336,7 +3236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '57' x-powered-by: - ASP.NET status: @@ -3356,15 +3256,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3373,7 +3273,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:54 GMT + - Fri, 15 Jan 2021 14:14:51 GMT expires: - '-1' pragma: @@ -3389,7 +3289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '56' x-powered-by: - ASP.NET status: @@ -3409,15 +3309,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"InProgress","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"InProgress","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3426,7 +3326,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:56 GMT + - Fri, 15 Jan 2021 14:14:52 GMT expires: - '-1' pragma: @@ -3442,7 +3342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '55' x-powered-by: - ASP.NET status: @@ -3462,15 +3362,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c45d5bdc-799e-43cc-a515-ead725a94311?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/298603ad-afce-4ef1-9e0b-2bd222474623?api-version=2020-10-01 response: body: - string: '{"id":"c45d5bdc-799e-43cc-a515-ead725a94311","name":"c45d5bdc-799e-43cc-a515-ead725a94311","status":"Succeeded","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"2020-12-18T10:30:25.7209999Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"853837ec-e3d5-4d32-8c6f-938eaec4cb8b"}}' + string: '{"id":"298603ad-afce-4ef1-9e0b-2bd222474623","name":"298603ad-afce-4ef1-9e0b-2bd222474623","status":"Succeeded","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"2021-01-15T14:14:22.5514569Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3d5c5490-4363-4f28-a634-cd49b64f0380"}}' headers: cache-control: - no-cache @@ -3479,7 +3379,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:30:57 GMT + - Fri, 15 Jan 2021 14:14:53 GMT expires: - '-1' pragma: @@ -3495,7 +3395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '54' x-powered-by: - ASP.NET status: @@ -3515,25 +3415,25 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/853837ec-e3d5-4d32-8c6f-938eaec4cb8b?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3d5c5490-4363-4f28-a634-cd49b64f0380?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/853837ec-e3d5-4d32-8c6f-938eaec4cb8b","name":"853837ec-e3d5-4d32-8c6f-938eaec4cb8b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT30.8935658S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000005","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T10:30:25.7209999Z","endTime":"2020-12-18T10:30:56.6145657Z","activityId":"fba7863e-411b-11eb-8465-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3d5c5490-4363-4f28-a634-cd49b64f0380","name":"3d5c5490-4363-4f28-a634-cd49b64f0380","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT30.890082S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000005","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:14:22.5514569Z","endTime":"2021-01-15T14:14:53.4415389Z","activityId":"f5532d07-573b-11eb-bd81-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '968' + - '967' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:00 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -3550,7 +3450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3570,7 +3470,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000006?$expand=instanceView&api-version=2020-06-01 response: @@ -3579,16 +3479,16 @@ interactions: \ \"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\": \"b1a49f1d-37fc-4cf8-96d4-611a230e46ea\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"b2867f63-ce12-4df0-a71e-57591daa9c0b\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000006_disk1_f9cefd061951401c98c8a893e3727187\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\",\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-vm000006_disk1_f9cefd061951401c98c8a893e3727187\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000006\",\r\n \ \"adminUsername\": \"clitest-vm000006\",\r\n \"windowsConfiguration\": @@ -3604,15 +3504,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n - \ \"time\": \"2020-12-18T10:30:52+00:00\"\r\n }\r\n ]\r\n - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000006_disk1_f9cefd061951401c98c8a893e3727187\",\r\n + \ \"time\": \"2021-01-15T14:14:51+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000006_OsDisk_1_d3ff57164f6042fba5990ab81769601b\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:29:18.6129225+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:12:39.7414186+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\": \"2020-12-18T10:29:45.2695794+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:13:54.0531114+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}" @@ -3620,11 +3520,11 @@ interactions: cache-control: - no-cache content-length: - - '3574' + - '3583' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:31:00 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -3641,7 +3541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3923,Microsoft.Compute/LowCostGet30Min;31905 status: code: 200 message: OK @@ -3659,15 +3559,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T10%3A26%3A49.8987566Z''\"","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-01-15T14%3A10%3A03.5510424Z''\"","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 @@ -3676,7 +3576,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:01 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: @@ -3708,15 +3608,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' + 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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache @@ -3725,7 +3625,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:03 GMT + - Fri, 15 Jan 2021 14:14:55 GMT expires: - '-1' pragma: @@ -3761,24 +3661,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-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-vm000006/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000006","protectionState":"NotProtected"}}]}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '2816' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:06 GMT + - Fri, 15 Jan 2021 14:14:56 GMT expires: - '-1' pragma: @@ -3811,52 +3711,48 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + 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=2020-10-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-vm000006/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000006","protectionState":"NotProtected"}}]}' + 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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1271' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:08 GMT + - Fri, 15 Jan 2021 14:14: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/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy", - "protectedItemType": "Microsoft.Compute/virtualMachines"}}' + body: null headers: Accept: - application/json @@ -3866,43 +3762,37 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000006/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006?api-version=2019-06-15 + 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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationsStatus/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2019-06-15 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:31:10 GMT + - Fri, 15 Jan 2021 14:14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationResults/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains 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: @@ -3922,45 +3812,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:12 GMT + - Fri, 15 Jan 2021 14:14: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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '149' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3975,45 +3859,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:14 GMT + - Fri, 15 Jan 2021 14:15: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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4028,45 +3906,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:15 GMT + - Fri, 15 Jan 2021 14:15: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/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '147' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4081,45 +3953,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:17 GMT + - Fri, 15 Jan 2021 14:15: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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '146' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4134,45 +4000,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:18 GMT + - Fri, 15 Jan 2021 14:15: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/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '145' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4187,45 +4047,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:20 GMT + - Fri, 15 Jan 2021 14:15: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/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-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: - - '144' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4240,45 +4094,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/a12c875c-88df-4667-84f7-072348266b4f?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' - content-type: - - application/json date: - - Fri, 18 Dec 2020 10:31:22 GMT + - Fri, 15 Jan 2021 14:15: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: - - '143' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4293,24 +4137,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + 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-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57/protectableItems/vm;iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57","name":"iaasvmcontainerv2;clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7;clitest-vmb3e57","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7/providers/Microsoft.Compute/virtualMachines/clitest-vmb3e57","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg3mkyksz55lv2kdepheoll3dmqme572uuif74eccgcwc7h4us4iluu4jazrrgbbcn7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmb3e57","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv/protectableItems/vm;iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv","name":"iaasvmcontainerv2;clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7;clitest-vmv43iv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7/providers/Microsoft.Compute/virtualMachines/clitest-vmv43iv","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg6mefsmkatqsopfsdjocc2lhpcxrusx4bwy4olf72tajgbar3jtnwrk374chtfrpw7","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmv43iv","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-vm000006/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000006","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '6596' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:24 GMT + - Fri, 15 Jan 2021 14:15:07 GMT expires: - '-1' pragma: @@ -4326,14 +4170,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006", + "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 @@ -4343,48 +4189,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + 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-vm000006/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + 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-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationsStatus/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:31:25 GMT + - Fri, 15 Jan 2021 14:15:08 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-vm000006/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/operationResults/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-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: - - '141' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4399,15 +4245,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4416,7 +4262,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:27 GMT + - Fri, 15 Jan 2021 14:15:08 GMT expires: - '-1' pragma: @@ -4432,7 +4278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: @@ -4452,15 +4298,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4469,7 +4315,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:28 GMT + - Fri, 15 Jan 2021 14:15:10 GMT expires: - '-1' pragma: @@ -4485,7 +4331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '148' x-powered-by: - ASP.NET status: @@ -4505,15 +4351,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4522,7 +4368,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:30 GMT + - Fri, 15 Jan 2021 14:15:11 GMT expires: - '-1' pragma: @@ -4538,7 +4384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '147' x-powered-by: - ASP.NET status: @@ -4558,15 +4404,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4575,7 +4421,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:31 GMT + - Fri, 15 Jan 2021 14:15:13 GMT expires: - '-1' pragma: @@ -4591,7 +4437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '146' x-powered-by: - ASP.NET status: @@ -4611,15 +4457,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4628,7 +4474,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:33 GMT + - Fri, 15 Jan 2021 14:15:14 GMT expires: - '-1' pragma: @@ -4644,7 +4490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '145' x-powered-by: - ASP.NET status: @@ -4664,15 +4510,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4681,7 +4527,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:34 GMT + - Fri, 15 Jan 2021 14:15:15 GMT expires: - '-1' pragma: @@ -4697,7 +4543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '144' x-powered-by: - ASP.NET status: @@ -4717,15 +4563,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4734,7 +4580,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:36 GMT + - Fri, 15 Jan 2021 14:15:16 GMT expires: - '-1' pragma: @@ -4750,7 +4596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '143' x-powered-by: - ASP.NET status: @@ -4770,15 +4616,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4787,7 +4633,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:37 GMT + - Fri, 15 Jan 2021 14:15:18 GMT expires: - '-1' pragma: @@ -4803,7 +4649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '142' x-powered-by: - ASP.NET status: @@ -4823,15 +4669,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4840,7 +4686,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:39 GMT + - Fri, 15 Jan 2021 14:15:19 GMT expires: - '-1' pragma: @@ -4856,7 +4702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '141' x-powered-by: - ASP.NET status: @@ -4876,15 +4722,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"InProgress","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4893,7 +4739,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:40 GMT + - Fri, 15 Jan 2021 14:15:20 GMT expires: - '-1' pragma: @@ -4909,7 +4755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '140' x-powered-by: - ASP.NET status: @@ -4929,24 +4775,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8037f487-51e3-4241-8b88-d67b8705cb5b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"8037f487-51e3-4241-8b88-d67b8705cb5b","name":"8037f487-51e3-4241-8b88-d67b8705cb5b","status":"Succeeded","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"2020-12-18T10:31:10.5707278Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"125d0773-1e44-427b-96c7-37878595aee1"}}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:42 GMT + - Fri, 15 Jan 2021 14:15:22 GMT expires: - '-1' pragma: @@ -4962,7 +4808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '139' x-powered-by: - ASP.NET status: @@ -4982,32 +4828,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/125d0773-1e44-427b-96c7-37878595aee1?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/125d0773-1e44-427b-96c7-37878595aee1","name":"125d0773-1e44-427b-96c7-37878595aee1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT30.8654838S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000006","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T10:31:10.5707278Z","endTime":"2020-12-18T10:31:41.4362116Z","activityId":"1ece548d-411c-11eb-b991-c03eba45757e"}}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:43 GMT + - Fri, 15 Jan 2021 14: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: @@ -5017,7 +4861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -5031,30 +4875,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup vault backup-properties set + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -n --soft-delete-feature-state + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-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}}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '446' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:45 GMT + - Fri, 15 Jan 2021 14:15:24 GMT expires: - '-1' pragma: @@ -5070,49 +4914,44 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"enhancedSecurityState": "Enabled", "softDeleteFeatureState": - "Disabled"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup vault backup-properties set + - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '90' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --soft-delete-feature-state + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-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}}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '447' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:46 GMT + - Fri, 15 Jan 2021 14:15:26 GMT expires: - '-1' pragma: @@ -5127,8 +4966,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -5142,30 +4981,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000003?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '850' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:46 GMT + - Fri, 15 Jan 2021 14:15:27 GMT expires: - '-1' pragma: @@ -5181,7 +5020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -5195,30 +5034,1425 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3687' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:48 GMT + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"InProgress","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/10a3e766-dd12-4541-a467-92954564fe77?api-version=2020-10-01 + response: + body: + string: '{"id":"10a3e766-dd12-4541-a467-92954564fe77","name":"10a3e766-dd12-4541-a467-92954564fe77","status":"Succeeded","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"2021-01-15T14:15:08.5430529Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f76f379f-ab29-4848-aeb2-968bb6adc6d3"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f76f379f-ab29-4848-aeb2-968bb6adc6d3?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f76f379f-ab29-4848-aeb2-968bb6adc6d3","name":"f76f379f-ab29-4848-aeb2-968bb6adc6d3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT30.8299093S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000006","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:15:08.5430529Z","endTime":"2021-01-15T14:15:39.3729622Z","activityId":"0a6921be-573c-11eb-ab2e-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault backup-properties set + Connection: + - keep-alive + ParameterSetName: + - -g -n --soft-delete-feature-state + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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: + - Fri, 15 Jan 2021 14:15: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: '{"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: + - -g -n --soft-delete-feature-state + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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: + - Fri, 15 Jan 2021 14:15: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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-item000003?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '850' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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 policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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?api-version=2020-10-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3687' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list-associated-items + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-01&$filter=policyName%20eq%20%27DefaultPolicy%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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305595103145","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305602785533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3925' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '138' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", + "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": + "Daily", "scheduleRunTimes": ["2021-01-16T00:00:00.000Z"], "scheduleWeeklyFrequency": + 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": + {"retentionTimes": ["2021-01-16T00:00:00.000Z"], "retentionDuration": {"count": + 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": + "UTC"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy create + Connection: + - keep-alive + Content-Length: + - '513' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --backup-management-type -g -v -n --policy + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-policy5000010?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy5000010","name":"clitest-policy5000010","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '850' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupPolicies/clitest-policy5000010?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15:44 GMT + expires: + - '-1' + 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: 200 + message: OK +- request: + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", + "instantRPDetails": {"azureBackupRGNamePrefix": "RG_prefix", "azureBackupRGNameSuffix": + "RG_suffix"}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-01-16T00:00:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-01-16T00:00:00.000Z"], "retentionDuration": + {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, + "timeZone": "UTC"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy set + Connection: + - keep-alive + Content-Length: + - '615' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --policy + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-policy000009?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy000009","name":"clitest-policy000009","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{"azureBackupRGNamePrefix":"RG_prefix","azureBackupRGNameSuffix":"RG_suffix"},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '925' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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?api-version=2020-10-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy000009","name":"clitest-policy000009","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{"azureBackupRGNamePrefix":"RG_prefix","azureBackupRGNameSuffix":"RG_suffix"},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4613' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupPolicies/clitest-policy000009?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15:46 GMT + expires: + - '-1' + 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: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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?api-version=2020-10-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3687' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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-item000004?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '850' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '147' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-vm000005","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2429' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '146' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305595103145","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305602785533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3925' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305595103145","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305602785533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3925' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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 + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000005/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000005?api-version=2020-10-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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Jan 2021 14:15:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15:50 GMT expires: - '-1' pragma: @@ -5248,30 +6482,193 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list-associated-items + - 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=policyName%20eq%20%27DefaultPolicy%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382382791261","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877383763419681","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3925' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:50 GMT + - Fri, 15 Jan 2021 14:15:55 GMT expires: - '-1' pragma: @@ -5287,54 +6684,261 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", - "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": - "Daily", "scheduleRunTimes": ["2020-12-18T20:00:00.000Z"], "scheduleWeeklyFrequency": - 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": - {"retentionTimes": ["2020-12-18T20:00:00.000Z"], "retentionDuration": {"count": - 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, "timeZone": - "UTC"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup policy create + - 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 + response: + body: + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 14:16: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: + - '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 - Content-Length: - - '513' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type -g -v -n --policy + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-policy5000010?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy5000010","name":"clitest-policy5000010","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '850' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:53 GMT + - Fri, 15 Jan 2021 14:16:02 GMT expires: - '-1' pragma: @@ -5349,8 +6953,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -5364,88 +6968,85 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy delete + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupPolicies/clitest-policy5000010?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:31:55 GMT + - Fri, 15 Jan 2021 14:16: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-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureIaasVM", - "instantRPDetails": {"azureBackupRGNamePrefix": "RG_prefix", "azureBackupRGNameSuffix": - "RG_suffix"}, "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2020-12-18T20:00:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2020-12-18T20:00:00.000Z"], "retentionDuration": - {"count": 30, "durationType": "Days"}}}, "instantRpRetentionRangeInDays": 2, - "timeZone": "UTC"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup policy set + - backup protection disable Connection: - keep-alive - Content-Length: - - '615' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-policy000009?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy000009","name":"clitest-policy000009","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{"azureBackupRGNamePrefix":"RG_prefix","azureBackupRGNameSuffix":"RG_suffix"},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '925' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:57 GMT + - Fri, 15 Jan 2021 14:16:05 GMT expires: - '-1' pragma: @@ -5460,8 +7061,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -5475,30 +7076,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-policy000009","name":"clitest-policy000009","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{"azureBackupRGNamePrefix":"RG_prefix","azureBackupRGNameSuffix":"RG_suffix"},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '4613' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:31:59 GMT + - Fri, 15 Jan 2021 14:16:06 GMT expires: - '-1' pragma: @@ -5514,7 +7116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -5528,40 +7130,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy delete + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupPolicies/clitest-policy000009?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:32:01 GMT + - Fri, 15 Jan 2021 14:16: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-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -5575,30 +7184,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"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":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000003","name":"clitest-item000003","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3687' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:03 GMT + - Fri, 15 Jan 2021 14:16:09 GMT expires: - '-1' pragma: @@ -5614,7 +7224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -5628,30 +7238,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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-item000004?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000004","name":"clitest-item000004","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":3,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '850' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:05 GMT + - Fri, 15 Jan 2021 14:16:10 GMT expires: - '-1' pragma: @@ -5667,7 +7278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -5681,30 +7292,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-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-vm000005","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2429' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:06 GMT + - Fri, 15 Jan 2021 14:16:11 GMT expires: - '-1' pragma: @@ -5720,7 +7332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -5734,30 +7346,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382382791261","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877383763419681","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3925' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:08 GMT + - Fri, 15 Jan 2021 14:16:13 GMT expires: - '-1' pragma: @@ -5773,7 +7386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: @@ -5794,24 +7407,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-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-vm000005/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000005","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877382382791261","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000005","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877383763419681","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3925' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:10 GMT + - Fri, 15 Jan 2021 14:16:14 GMT expires: - '-1' pragma: @@ -5827,7 +7440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: @@ -5844,47 +7457,49 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000005/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000005?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:32:11 GMT + - Fri, 15 Jan 2021 14:16:15 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5900,15 +7515,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5917,7 +7532,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:13 GMT + - Fri, 15 Jan 2021 14:16:17 GMT expires: - '-1' pragma: @@ -5933,7 +7548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '129' x-powered-by: - ASP.NET status: @@ -5954,15 +7569,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5971,7 +7586,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:15 GMT + - Fri, 15 Jan 2021 14:16:19 GMT expires: - '-1' pragma: @@ -5987,7 +7602,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '128' x-powered-by: - ASP.NET status: @@ -6008,15 +7623,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6025,7 +7640,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:17 GMT + - Fri, 15 Jan 2021 14:16:20 GMT expires: - '-1' pragma: @@ -6041,7 +7656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '127' x-powered-by: - ASP.NET status: @@ -6062,15 +7677,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6079,7 +7694,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:19 GMT + - Fri, 15 Jan 2021 14:16:21 GMT expires: - '-1' pragma: @@ -6095,7 +7710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '126' x-powered-by: - ASP.NET status: @@ -6116,15 +7731,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6133,7 +7748,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:20 GMT + - Fri, 15 Jan 2021 14:16:23 GMT expires: - '-1' pragma: @@ -6149,7 +7764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '125' x-powered-by: - ASP.NET status: @@ -6170,15 +7785,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6187,7 +7802,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:22 GMT + - Fri, 15 Jan 2021 14:16:24 GMT expires: - '-1' pragma: @@ -6203,7 +7818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '124' x-powered-by: - ASP.NET status: @@ -6224,15 +7839,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6241,7 +7856,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:23 GMT + - Fri, 15 Jan 2021 14:16:26 GMT expires: - '-1' pragma: @@ -6257,7 +7872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '123' x-powered-by: - ASP.NET status: @@ -6278,15 +7893,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6295,7 +7910,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:25 GMT + - Fri, 15 Jan 2021 14:16:27 GMT expires: - '-1' pragma: @@ -6311,7 +7926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '122' x-powered-by: - ASP.NET status: @@ -6332,15 +7947,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6349,7 +7964,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:26 GMT + - Fri, 15 Jan 2021 14:16:28 GMT expires: - '-1' pragma: @@ -6365,7 +7980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '121' x-powered-by: - ASP.NET status: @@ -6386,15 +8001,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6403,7 +8018,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:28 GMT + - Fri, 15 Jan 2021 14:16:30 GMT expires: - '-1' pragma: @@ -6419,7 +8034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '120' x-powered-by: - ASP.NET status: @@ -6440,15 +8055,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6457,7 +8072,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:30 GMT + - Fri, 15 Jan 2021 14:16:31 GMT expires: - '-1' pragma: @@ -6473,7 +8088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '119' x-powered-by: - ASP.NET status: @@ -6494,15 +8109,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6511,7 +8126,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:31 GMT + - Fri, 15 Jan 2021 14:16:32 GMT expires: - '-1' pragma: @@ -6527,7 +8142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '118' x-powered-by: - ASP.NET status: @@ -6548,15 +8163,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6565,7 +8180,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:32 GMT + - Fri, 15 Jan 2021 14:16:33 GMT expires: - '-1' pragma: @@ -6581,7 +8196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '117' x-powered-by: - ASP.NET status: @@ -6602,15 +8217,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6619,7 +8234,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:34 GMT + - Fri, 15 Jan 2021 14:16:35 GMT expires: - '-1' pragma: @@ -6635,7 +8250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '116' x-powered-by: - ASP.NET status: @@ -6656,15 +8271,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6673,7 +8288,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:35 GMT + - Fri, 15 Jan 2021 14:16:36 GMT expires: - '-1' pragma: @@ -6689,7 +8304,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '115' x-powered-by: - ASP.NET status: @@ -6710,15 +8325,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6727,7 +8342,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:37 GMT + - Fri, 15 Jan 2021 14:16:37 GMT expires: - '-1' pragma: @@ -6743,7 +8358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '114' x-powered-by: - ASP.NET status: @@ -6764,15 +8379,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6781,7 +8396,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:38 GMT + - Fri, 15 Jan 2021 14:16:39 GMT expires: - '-1' pragma: @@ -6797,7 +8412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '113' x-powered-by: - ASP.NET status: @@ -6818,15 +8433,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6835,7 +8450,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:40 GMT + - Fri, 15 Jan 2021 14:16:40 GMT expires: - '-1' pragma: @@ -6851,7 +8466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '112' x-powered-by: - ASP.NET status: @@ -6872,15 +8487,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6889,7 +8504,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:43 GMT + - Fri, 15 Jan 2021 14:16:41 GMT expires: - '-1' pragma: @@ -6905,7 +8520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '111' x-powered-by: - ASP.NET status: @@ -6926,15 +8541,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6943,7 +8558,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:45 GMT + - Fri, 15 Jan 2021 14:16:43 GMT expires: - '-1' pragma: @@ -6959,7 +8574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '110' x-powered-by: - ASP.NET status: @@ -6980,15 +8595,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6997,7 +8612,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:47 GMT + - Fri, 15 Jan 2021 14:16:44 GMT expires: - '-1' pragma: @@ -7013,7 +8628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '109' x-powered-by: - ASP.NET status: @@ -7034,15 +8649,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7051,7 +8666,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:48 GMT + - Fri, 15 Jan 2021 14:16:45 GMT expires: - '-1' pragma: @@ -7067,7 +8682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '108' x-powered-by: - ASP.NET status: @@ -7088,15 +8703,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7105,7 +8720,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:50 GMT + - Fri, 15 Jan 2021 14:16:46 GMT expires: - '-1' pragma: @@ -7121,7 +8736,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '107' x-powered-by: - ASP.NET status: @@ -7142,15 +8757,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7159,7 +8774,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:51 GMT + - Fri, 15 Jan 2021 14:16:48 GMT expires: - '-1' pragma: @@ -7175,7 +8790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '106' x-powered-by: - ASP.NET status: @@ -7196,15 +8811,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7213,7 +8828,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:53 GMT + - Fri, 15 Jan 2021 14:16:49 GMT expires: - '-1' pragma: @@ -7229,7 +8844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '105' x-powered-by: - ASP.NET status: @@ -7250,15 +8865,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7267,7 +8882,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:54 GMT + - Fri, 15 Jan 2021 14:16:50 GMT expires: - '-1' pragma: @@ -7283,7 +8898,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '104' x-powered-by: - ASP.NET status: @@ -7304,15 +8919,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7321,7 +8936,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:56 GMT + - Fri, 15 Jan 2021 14:16:52 GMT expires: - '-1' pragma: @@ -7337,7 +8952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '103' x-powered-by: - ASP.NET status: @@ -7358,15 +8973,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7375,7 +8990,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:57 GMT + - Fri, 15 Jan 2021 14:16:53 GMT expires: - '-1' pragma: @@ -7391,7 +9006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '102' x-powered-by: - ASP.NET status: @@ -7412,15 +9027,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7429,7 +9044,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:32:59 GMT + - Fri, 15 Jan 2021 14:16:54 GMT expires: - '-1' pragma: @@ -7445,7 +9060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '101' x-powered-by: - ASP.NET status: @@ -7466,15 +9081,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7483,7 +9098,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:00 GMT + - Fri, 15 Jan 2021 14:16:56 GMT expires: - '-1' pragma: @@ -7499,7 +9114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '100' x-powered-by: - ASP.NET status: @@ -7520,15 +9135,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7537,7 +9152,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:02 GMT + - Fri, 15 Jan 2021 14:16:57 GMT expires: - '-1' pragma: @@ -7553,7 +9168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '99' x-powered-by: - ASP.NET status: @@ -7574,15 +9189,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7591,7 +9206,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:03 GMT + - Fri, 15 Jan 2021 14:16:58 GMT expires: - '-1' pragma: @@ -7607,7 +9222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '98' x-powered-by: - ASP.NET status: @@ -7628,15 +9243,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7645,7 +9260,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:05 GMT + - Fri, 15 Jan 2021 14:16:59 GMT expires: - '-1' pragma: @@ -7661,7 +9276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '97' x-powered-by: - ASP.NET status: @@ -7682,15 +9297,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7699,7 +9314,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:06 GMT + - Fri, 15 Jan 2021 14:17:02 GMT expires: - '-1' pragma: @@ -7715,7 +9330,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '96' x-powered-by: - ASP.NET status: @@ -7736,15 +9351,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7753,7 +9368,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:08 GMT + - Fri, 15 Jan 2021 14:17:03 GMT expires: - '-1' pragma: @@ -7769,7 +9384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '95' x-powered-by: - ASP.NET status: @@ -7790,15 +9405,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7807,7 +9422,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:10 GMT + - Fri, 15 Jan 2021 14:17:04 GMT expires: - '-1' pragma: @@ -7823,7 +9438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '94' x-powered-by: - ASP.NET status: @@ -7844,15 +9459,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7861,7 +9476,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:11 GMT + - Fri, 15 Jan 2021 14:17:06 GMT expires: - '-1' pragma: @@ -7877,7 +9492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '93' x-powered-by: - ASP.NET status: @@ -7898,15 +9513,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7915,7 +9530,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:13 GMT + - Fri, 15 Jan 2021 14:17:07 GMT expires: - '-1' pragma: @@ -7931,7 +9546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '92' x-powered-by: - ASP.NET status: @@ -7952,15 +9567,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7969,7 +9584,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:14 GMT + - Fri, 15 Jan 2021 14:17:08 GMT expires: - '-1' pragma: @@ -7985,7 +9600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '91' x-powered-by: - ASP.NET status: @@ -8006,15 +9621,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8023,7 +9638,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:16 GMT + - Fri, 15 Jan 2021 14:17:10 GMT expires: - '-1' pragma: @@ -8039,7 +9654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '90' x-powered-by: - ASP.NET status: @@ -8060,15 +9675,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8077,7 +9692,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:17 GMT + - Fri, 15 Jan 2021 14:17:11 GMT expires: - '-1' pragma: @@ -8093,7 +9708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '89' x-powered-by: - ASP.NET status: @@ -8114,15 +9729,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8131,7 +9746,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:19 GMT + - Fri, 15 Jan 2021 14:17:12 GMT expires: - '-1' pragma: @@ -8147,7 +9762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '88' x-powered-by: - ASP.NET status: @@ -8168,15 +9783,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8185,7 +9800,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:20 GMT + - Fri, 15 Jan 2021 14:17:14 GMT expires: - '-1' pragma: @@ -8201,7 +9816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '87' x-powered-by: - ASP.NET status: @@ -8222,15 +9837,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8239,7 +9854,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:22 GMT + - Fri, 15 Jan 2021 14:17:15 GMT expires: - '-1' pragma: @@ -8255,7 +9870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '86' x-powered-by: - ASP.NET status: @@ -8276,15 +9891,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8293,7 +9908,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:24 GMT + - Fri, 15 Jan 2021 14:17:16 GMT expires: - '-1' pragma: @@ -8309,7 +9924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '85' x-powered-by: - ASP.NET status: @@ -8330,15 +9945,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8347,7 +9962,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:26 GMT + - Fri, 15 Jan 2021 14:17:18 GMT expires: - '-1' pragma: @@ -8363,7 +9978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '84' x-powered-by: - ASP.NET status: @@ -8384,15 +9999,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8401,7 +10016,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:27 GMT + - Fri, 15 Jan 2021 14:17:19 GMT expires: - '-1' pragma: @@ -8417,7 +10032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '83' x-powered-by: - ASP.NET status: @@ -8438,15 +10053,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8455,7 +10070,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:29 GMT + - Fri, 15 Jan 2021 14:17:20 GMT expires: - '-1' pragma: @@ -8471,7 +10086,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '82' x-powered-by: - ASP.NET status: @@ -8492,15 +10107,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8509,7 +10124,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:30 GMT + - Fri, 15 Jan 2021 14:17:22 GMT expires: - '-1' pragma: @@ -8525,7 +10140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '81' x-powered-by: - ASP.NET status: @@ -8546,15 +10161,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8563,7 +10178,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:32 GMT + - Fri, 15 Jan 2021 14:17:23 GMT expires: - '-1' pragma: @@ -8579,7 +10194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '80' x-powered-by: - ASP.NET status: @@ -8600,15 +10215,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8617,7 +10232,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:33 GMT + - Fri, 15 Jan 2021 14:17:24 GMT expires: - '-1' pragma: @@ -8633,7 +10248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '79' x-powered-by: - ASP.NET status: @@ -8654,15 +10269,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8671,7 +10286,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:35 GMT + - Fri, 15 Jan 2021 14:17:26 GMT expires: - '-1' pragma: @@ -8687,7 +10302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '78' x-powered-by: - ASP.NET status: @@ -8708,15 +10323,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8725,7 +10340,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:36 GMT + - Fri, 15 Jan 2021 14:17:27 GMT expires: - '-1' pragma: @@ -8741,7 +10356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '77' x-powered-by: - ASP.NET status: @@ -8762,15 +10377,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8779,7 +10394,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:38 GMT + - Fri, 15 Jan 2021 14:17:28 GMT expires: - '-1' pragma: @@ -8795,7 +10410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '76' x-powered-by: - ASP.NET status: @@ -8816,15 +10431,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8833,7 +10448,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:39 GMT + - Fri, 15 Jan 2021 14:17:29 GMT expires: - '-1' pragma: @@ -8849,7 +10464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '75' x-powered-by: - ASP.NET status: @@ -8870,15 +10485,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8887,7 +10502,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:41 GMT + - Fri, 15 Jan 2021 14:17:31 GMT expires: - '-1' pragma: @@ -8903,7 +10518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '74' x-powered-by: - ASP.NET status: @@ -8924,15 +10539,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8941,7 +10556,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:42 GMT + - Fri, 15 Jan 2021 14:17:32 GMT expires: - '-1' pragma: @@ -8957,7 +10572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '73' x-powered-by: - ASP.NET status: @@ -8978,15 +10593,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8995,7 +10610,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:44 GMT + - Fri, 15 Jan 2021 14:17:34 GMT expires: - '-1' pragma: @@ -9011,7 +10626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '72' x-powered-by: - ASP.NET status: @@ -9032,15 +10647,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9049,7 +10664,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:46 GMT + - Fri, 15 Jan 2021 14:17:35 GMT expires: - '-1' pragma: @@ -9065,7 +10680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '71' x-powered-by: - ASP.NET status: @@ -9086,15 +10701,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9103,7 +10718,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:47 GMT + - Fri, 15 Jan 2021 14:17:36 GMT expires: - '-1' pragma: @@ -9119,7 +10734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '70' x-powered-by: - ASP.NET status: @@ -9140,15 +10755,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9157,7 +10772,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:49 GMT + - Fri, 15 Jan 2021 14:17:38 GMT expires: - '-1' pragma: @@ -9173,7 +10788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '69' x-powered-by: - ASP.NET status: @@ -9194,15 +10809,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9211,7 +10826,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:50 GMT + - Fri, 15 Jan 2021 14:17:39 GMT expires: - '-1' pragma: @@ -9227,7 +10842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '68' x-powered-by: - ASP.NET status: @@ -9248,15 +10863,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"InProgress","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9265,7 +10880,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:52 GMT + - Fri, 15 Jan 2021 14:17:40 GMT expires: - '-1' pragma: @@ -9281,7 +10896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '67' x-powered-by: - ASP.NET status: @@ -9302,24 +10917,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1e73252b-bf62-459c-9b3b-25ab1bb53b73?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","name":"1e73252b-bf62-459c-9b3b-25ab1bb53b73","status":"Succeeded","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"2021-01-15T14:15:49.6171779Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"91aae655-dcce-4805-a14c-a0f0d5ea0855"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:53 GMT + - Fri, 15 Jan 2021 14:17:42 GMT expires: - '-1' pragma: @@ -9335,7 +10950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '66' x-powered-by: - ASP.NET status: @@ -9356,30 +10971,32 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/91aae655-dcce-4805-a14c-a0f0d5ea0855?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/91aae655-dcce-4805-a14c-a0f0d5ea0855","name":"91aae655-dcce-4805-a14c-a0f0d5ea0855","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT1M51.3573449S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000005","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:15:49.6171779Z","endTime":"2021-01-15T14:17:40.9745228Z","activityId":"2a7954de-573c-11eb-8a79-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '973' content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:55 GMT + - Fri, 15 Jan 2021 14:17: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: @@ -9389,7 +11006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '138' x-powered-by: - ASP.NET status: @@ -9403,31 +11020,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + 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-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305602785533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1968' content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:56 GMT + - Fri, 15 Jan 2021 14:17:43 GMT expires: - '-1' pragma: @@ -9443,7 +11059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '135' x-powered-by: - ASP.NET status: @@ -9464,24 +11080,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + 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-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261053305602785533","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1968' content-type: - application/json date: - - Fri, 18 Dec 2020 10:33:58 GMT + - Fri, 15 Jan 2021 14:17:43 GMT expires: - '-1' pragma: @@ -9497,7 +11113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '141' x-powered-by: - ASP.NET status: @@ -9514,49 +11130,47 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + 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-vm000006/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:33:59 GMT + - Fri, 15 Jan 2021 14:17:44 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-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' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -9572,15 +11186,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9589,7 +11203,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:01 GMT + - Fri, 15 Jan 2021 14:17:44 GMT expires: - '-1' pragma: @@ -9605,7 +11219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '149' x-powered-by: - ASP.NET status: @@ -9626,15 +11240,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"InProgress","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9643,7 +11257,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:02 GMT + - Fri, 15 Jan 2021 14:17:46 GMT expires: - '-1' pragma: @@ -9659,7 +11273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '148' x-powered-by: - ASP.NET status: @@ -9680,24 +11294,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c9b30c35-53f4-4619-8e92-45e3ee092ea4?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","name":"c9b30c35-53f4-4619-8e92-45e3ee092ea4","status":"Succeeded","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"2020-12-18T10:32:12.1328308Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3f52109c-13b1-4674-a86c-79956fe78e88"}}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:04 GMT + - Fri, 15 Jan 2021 14:17:47 GMT expires: - '-1' pragma: @@ -9713,7 +11327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '147' x-powered-by: - ASP.NET status: @@ -9734,32 +11348,30 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3f52109c-13b1-4674-a86c-79956fe78e88?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3f52109c-13b1-4674-a86c-79956fe78e88","name":"3f52109c-13b1-4674-a86c-79956fe78e88","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000005","duration":"PT1M51.4767844S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000005","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000005","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T10:32:12.1328308Z","endTime":"2020-12-18T10:34:03.6096152Z","activityId":"4821a02c-411c-11eb-aa23-c03eba45757e"}}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '973' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:06 GMT + - Fri, 15 Jan 2021 14:17: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: @@ -9769,7 +11381,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -9783,30 +11395,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-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-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877383763419681","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:07 GMT + - Fri, 15 Jan 2021 14:17:49 GMT expires: - '-1' pragma: @@ -9822,7 +11435,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -9843,24 +11456,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-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-vm000006/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000006","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260877383763419681","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000006","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:10 GMT + - Fri, 15 Jan 2021 14:17:52 GMT expires: - '-1' pragma: @@ -9876,7 +11489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '144' x-powered-by: - ASP.NET status: @@ -9893,47 +11506,49 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vm000006/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000006?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:34:12 GMT + - Fri, 15 Jan 2021 14:17:53 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -9949,15 +11564,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9966,7 +11581,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:14 GMT + - Fri, 15 Jan 2021 14:17:54 GMT expires: - '-1' pragma: @@ -9982,7 +11597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -10003,15 +11618,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10020,7 +11635,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:16 GMT + - Fri, 15 Jan 2021 14:17:56 GMT expires: - '-1' pragma: @@ -10036,7 +11651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -10057,15 +11672,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10074,7 +11689,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:17 GMT + - Fri, 15 Jan 2021 14:17:57 GMT expires: - '-1' pragma: @@ -10090,7 +11705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -10111,15 +11726,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10128,7 +11743,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:19 GMT + - Fri, 15 Jan 2021 14:17:59 GMT expires: - '-1' pragma: @@ -10144,7 +11759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -10165,15 +11780,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10182,7 +11797,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:21 GMT + - Fri, 15 Jan 2021 14:18:00 GMT expires: - '-1' pragma: @@ -10198,7 +11813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -10219,15 +11834,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10236,7 +11851,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:22 GMT + - Fri, 15 Jan 2021 14:18:01 GMT expires: - '-1' pragma: @@ -10252,7 +11867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -10273,15 +11888,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10290,7 +11905,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:24 GMT + - Fri, 15 Jan 2021 14:18:03 GMT expires: - '-1' pragma: @@ -10306,7 +11921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -10327,15 +11942,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10344,7 +11959,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:25 GMT + - Fri, 15 Jan 2021 14:18:04 GMT expires: - '-1' pragma: @@ -10360,7 +11975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -10381,15 +11996,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10398,7 +12013,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:27 GMT + - Fri, 15 Jan 2021 14:18:05 GMT expires: - '-1' pragma: @@ -10414,7 +12029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -10435,15 +12050,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10452,7 +12067,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:28 GMT + - Fri, 15 Jan 2021 14:18:06 GMT expires: - '-1' pragma: @@ -10468,7 +12083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -10489,15 +12104,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10506,7 +12121,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:30 GMT + - Fri, 15 Jan 2021 14:18:08 GMT expires: - '-1' pragma: @@ -10522,7 +12137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: @@ -10543,15 +12158,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10560,7 +12175,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:31 GMT + - Fri, 15 Jan 2021 14:18:09 GMT expires: - '-1' pragma: @@ -10576,7 +12191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '131' x-powered-by: - ASP.NET status: @@ -10597,15 +12212,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10614,7 +12229,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:33 GMT + - Fri, 15 Jan 2021 14:18:10 GMT expires: - '-1' pragma: @@ -10630,7 +12245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '130' x-powered-by: - ASP.NET status: @@ -10651,15 +12266,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10668,7 +12283,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:34 GMT + - Fri, 15 Jan 2021 14:18:11 GMT expires: - '-1' pragma: @@ -10684,7 +12299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '129' x-powered-by: - ASP.NET status: @@ -10705,15 +12320,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10722,7 +12337,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:36 GMT + - Fri, 15 Jan 2021 14:18:13 GMT expires: - '-1' pragma: @@ -10738,7 +12353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '128' x-powered-by: - ASP.NET status: @@ -10759,15 +12374,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10776,7 +12391,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:37 GMT + - Fri, 15 Jan 2021 14:18:14 GMT expires: - '-1' pragma: @@ -10792,7 +12407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '127' x-powered-by: - ASP.NET status: @@ -10813,15 +12428,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10830,7 +12445,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:39 GMT + - Fri, 15 Jan 2021 14:18:15 GMT expires: - '-1' pragma: @@ -10846,7 +12461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '126' x-powered-by: - ASP.NET status: @@ -10867,15 +12482,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10884,7 +12499,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:40 GMT + - Fri, 15 Jan 2021 14:18:17 GMT expires: - '-1' pragma: @@ -10900,7 +12515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '125' x-powered-by: - ASP.NET status: @@ -10921,15 +12536,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10938,7 +12553,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:42 GMT + - Fri, 15 Jan 2021 14:18:18 GMT expires: - '-1' pragma: @@ -10954,7 +12569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '124' x-powered-by: - ASP.NET status: @@ -10975,15 +12590,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10992,7 +12607,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:43 GMT + - Fri, 15 Jan 2021 14:18:19 GMT expires: - '-1' pragma: @@ -11008,7 +12623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '123' x-powered-by: - ASP.NET status: @@ -11029,15 +12644,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11046,7 +12661,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:45 GMT + - Fri, 15 Jan 2021 14:18:20 GMT expires: - '-1' pragma: @@ -11062,7 +12677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '122' x-powered-by: - ASP.NET status: @@ -11083,15 +12698,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11100,7 +12715,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:47 GMT + - Fri, 15 Jan 2021 14:18:22 GMT expires: - '-1' pragma: @@ -11116,7 +12731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '121' x-powered-by: - ASP.NET status: @@ -11137,15 +12752,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11154,7 +12769,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:49 GMT + - Fri, 15 Jan 2021 14:18:23 GMT expires: - '-1' pragma: @@ -11170,7 +12785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '120' x-powered-by: - ASP.NET status: @@ -11191,15 +12806,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11208,7 +12823,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:50 GMT + - Fri, 15 Jan 2021 14:18:24 GMT expires: - '-1' pragma: @@ -11224,7 +12839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '119' x-powered-by: - ASP.NET status: @@ -11245,15 +12860,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11262,7 +12877,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:52 GMT + - Fri, 15 Jan 2021 14:18:25 GMT expires: - '-1' pragma: @@ -11278,7 +12893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '118' x-powered-by: - ASP.NET status: @@ -11299,15 +12914,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11316,7 +12931,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:53 GMT + - Fri, 15 Jan 2021 14:18:27 GMT expires: - '-1' pragma: @@ -11332,7 +12947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '117' x-powered-by: - ASP.NET status: @@ -11353,15 +12968,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11370,7 +12985,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:55 GMT + - Fri, 15 Jan 2021 14:18:28 GMT expires: - '-1' pragma: @@ -11386,7 +13001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '116' x-powered-by: - ASP.NET status: @@ -11407,15 +13022,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11424,7 +13039,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:56 GMT + - Fri, 15 Jan 2021 14:18:29 GMT expires: - '-1' pragma: @@ -11440,7 +13055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '115' x-powered-by: - ASP.NET status: @@ -11461,15 +13076,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11478,7 +13093,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:58 GMT + - Fri, 15 Jan 2021 14:18:31 GMT expires: - '-1' pragma: @@ -11494,7 +13109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '114' x-powered-by: - ASP.NET status: @@ -11515,15 +13130,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11532,7 +13147,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:34:59 GMT + - Fri, 15 Jan 2021 14:18:32 GMT expires: - '-1' pragma: @@ -11548,7 +13163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '113' x-powered-by: - ASP.NET status: @@ -11569,15 +13184,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11586,7 +13201,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:01 GMT + - Fri, 15 Jan 2021 14:18:33 GMT expires: - '-1' pragma: @@ -11602,7 +13217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '112' x-powered-by: - ASP.NET status: @@ -11623,15 +13238,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11640,7 +13255,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:02 GMT + - Fri, 15 Jan 2021 14:18:35 GMT expires: - '-1' pragma: @@ -11656,7 +13271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '111' x-powered-by: - ASP.NET status: @@ -11677,15 +13292,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11694,7 +13309,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:04 GMT + - Fri, 15 Jan 2021 14:18:36 GMT expires: - '-1' pragma: @@ -11710,7 +13325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '110' x-powered-by: - ASP.NET status: @@ -11731,15 +13346,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11748,7 +13363,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:05 GMT + - Fri, 15 Jan 2021 14:18:37 GMT expires: - '-1' pragma: @@ -11764,7 +13379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '109' x-powered-by: - ASP.NET status: @@ -11785,15 +13400,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11802,7 +13417,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:07 GMT + - Fri, 15 Jan 2021 14:18:39 GMT expires: - '-1' pragma: @@ -11818,7 +13433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '108' x-powered-by: - ASP.NET status: @@ -11839,15 +13454,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11856,7 +13471,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:08 GMT + - Fri, 15 Jan 2021 14:18:40 GMT expires: - '-1' pragma: @@ -11872,7 +13487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '107' x-powered-by: - ASP.NET status: @@ -11893,15 +13508,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11910,7 +13525,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:10 GMT + - Fri, 15 Jan 2021 14:18:41 GMT expires: - '-1' pragma: @@ -11926,7 +13541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '106' x-powered-by: - ASP.NET status: @@ -11947,15 +13562,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11964,7 +13579,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:12 GMT + - Fri, 15 Jan 2021 14:18:42 GMT expires: - '-1' pragma: @@ -11980,7 +13595,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '105' x-powered-by: - ASP.NET status: @@ -12001,15 +13616,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12018,7 +13633,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:13 GMT + - Fri, 15 Jan 2021 14:18:44 GMT expires: - '-1' pragma: @@ -12034,7 +13649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '104' x-powered-by: - ASP.NET status: @@ -12055,15 +13670,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12072,7 +13687,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:15 GMT + - Fri, 15 Jan 2021 14:18:45 GMT expires: - '-1' pragma: @@ -12088,7 +13703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '103' x-powered-by: - ASP.NET status: @@ -12109,15 +13724,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12126,7 +13741,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:16 GMT + - Fri, 15 Jan 2021 14:18:46 GMT expires: - '-1' pragma: @@ -12142,7 +13757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '102' x-powered-by: - ASP.NET status: @@ -12163,15 +13778,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12180,7 +13795,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:18 GMT + - Fri, 15 Jan 2021 14:18:47 GMT expires: - '-1' pragma: @@ -12196,7 +13811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '101' x-powered-by: - ASP.NET status: @@ -12217,15 +13832,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12234,7 +13849,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:19 GMT + - Fri, 15 Jan 2021 14:18:49 GMT expires: - '-1' pragma: @@ -12250,7 +13865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '100' x-powered-by: - ASP.NET status: @@ -12271,15 +13886,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12288,7 +13903,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:21 GMT + - Fri, 15 Jan 2021 14:18:50 GMT expires: - '-1' pragma: @@ -12304,7 +13919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '99' x-powered-by: - ASP.NET status: @@ -12325,15 +13940,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12342,7 +13957,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:22 GMT + - Fri, 15 Jan 2021 14:18:51 GMT expires: - '-1' pragma: @@ -12358,7 +13973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '98' x-powered-by: - ASP.NET status: @@ -12379,15 +13994,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12396,7 +14011,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:24 GMT + - Fri, 15 Jan 2021 14:18:53 GMT expires: - '-1' pragma: @@ -12412,7 +14027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '97' x-powered-by: - ASP.NET status: @@ -12433,15 +14048,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12450,7 +14065,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:25 GMT + - Fri, 15 Jan 2021 14:18:54 GMT expires: - '-1' pragma: @@ -12466,7 +14081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '96' x-powered-by: - ASP.NET status: @@ -12487,15 +14102,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12504,7 +14119,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:27 GMT + - Fri, 15 Jan 2021 14:18:55 GMT expires: - '-1' pragma: @@ -12520,7 +14135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '95' x-powered-by: - ASP.NET status: @@ -12541,15 +14156,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12558,7 +14173,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:28 GMT + - Fri, 15 Jan 2021 14:18:56 GMT expires: - '-1' pragma: @@ -12574,7 +14189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '94' x-powered-by: - ASP.NET status: @@ -12595,15 +14210,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12612,7 +14227,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:29 GMT + - Fri, 15 Jan 2021 14:18:59 GMT expires: - '-1' pragma: @@ -12628,7 +14243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '93' x-powered-by: - ASP.NET status: @@ -12649,15 +14264,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12666,7 +14281,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:31 GMT + - Fri, 15 Jan 2021 14:19:00 GMT expires: - '-1' pragma: @@ -12682,7 +14297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '92' x-powered-by: - ASP.NET status: @@ -12703,15 +14318,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12720,7 +14335,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:32 GMT + - Fri, 15 Jan 2021 14:19:01 GMT expires: - '-1' pragma: @@ -12736,7 +14351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '91' x-powered-by: - ASP.NET status: @@ -12757,15 +14372,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12774,7 +14389,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:35 GMT + - Fri, 15 Jan 2021 14:19:03 GMT expires: - '-1' pragma: @@ -12790,7 +14405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '90' x-powered-by: - ASP.NET status: @@ -12811,15 +14426,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12828,7 +14443,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:36 GMT + - Fri, 15 Jan 2021 14:19:04 GMT expires: - '-1' pragma: @@ -12844,7 +14459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '89' x-powered-by: - ASP.NET status: @@ -12865,15 +14480,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12882,7 +14497,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:38 GMT + - Fri, 15 Jan 2021 14:19:05 GMT expires: - '-1' pragma: @@ -12898,7 +14513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '88' x-powered-by: - ASP.NET status: @@ -12919,15 +14534,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12936,7 +14551,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:39 GMT + - Fri, 15 Jan 2021 14:19:06 GMT expires: - '-1' pragma: @@ -12952,7 +14567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '87' x-powered-by: - ASP.NET status: @@ -12973,15 +14588,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12990,7 +14605,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:41 GMT + - Fri, 15 Jan 2021 14:19:08 GMT expires: - '-1' pragma: @@ -13006,7 +14621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '86' x-powered-by: - ASP.NET status: @@ -13027,15 +14642,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13044,7 +14659,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:44 GMT + - Fri, 15 Jan 2021 14:19:09 GMT expires: - '-1' pragma: @@ -13060,7 +14675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '85' x-powered-by: - ASP.NET status: @@ -13081,15 +14696,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13098,7 +14713,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:46 GMT + - Fri, 15 Jan 2021 14:19:10 GMT expires: - '-1' pragma: @@ -13114,7 +14729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '84' x-powered-by: - ASP.NET status: @@ -13135,15 +14750,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13152,7 +14767,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:47 GMT + - Fri, 15 Jan 2021 14:19:12 GMT expires: - '-1' pragma: @@ -13168,7 +14783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '83' x-powered-by: - ASP.NET status: @@ -13189,15 +14804,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13206,7 +14821,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:49 GMT + - Fri, 15 Jan 2021 14:19:13 GMT expires: - '-1' pragma: @@ -13222,7 +14837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '82' x-powered-by: - ASP.NET status: @@ -13243,15 +14858,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13260,7 +14875,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:50 GMT + - Fri, 15 Jan 2021 14:19:14 GMT expires: - '-1' pragma: @@ -13276,7 +14891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '81' x-powered-by: - ASP.NET status: @@ -13297,15 +14912,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13314,7 +14929,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:52 GMT + - Fri, 15 Jan 2021 14:19:15 GMT expires: - '-1' pragma: @@ -13330,7 +14945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '80' x-powered-by: - ASP.NET status: @@ -13351,15 +14966,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13368,7 +14983,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:53 GMT + - Fri, 15 Jan 2021 14:19:17 GMT expires: - '-1' pragma: @@ -13384,7 +14999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '79' x-powered-by: - ASP.NET status: @@ -13405,15 +15020,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13422,7 +15037,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:55 GMT + - Fri, 15 Jan 2021 14:19:18 GMT expires: - '-1' pragma: @@ -13438,7 +15053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '78' x-powered-by: - ASP.NET status: @@ -13459,15 +15074,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13476,7 +15091,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:56 GMT + - Fri, 15 Jan 2021 14:19:19 GMT expires: - '-1' pragma: @@ -13492,7 +15107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '77' x-powered-by: - ASP.NET status: @@ -13513,15 +15128,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13530,7 +15145,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:35:58 GMT + - Fri, 15 Jan 2021 14:19:21 GMT expires: - '-1' pragma: @@ -13546,7 +15161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '76' x-powered-by: - ASP.NET status: @@ -13567,15 +15182,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13584,7 +15199,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:00 GMT + - Fri, 15 Jan 2021 14:19:22 GMT expires: - '-1' pragma: @@ -13600,7 +15215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '75' x-powered-by: - ASP.NET status: @@ -13621,15 +15236,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13638,7 +15253,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:02 GMT + - Fri, 15 Jan 2021 14:19:23 GMT expires: - '-1' pragma: @@ -13654,7 +15269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '74' x-powered-by: - ASP.NET status: @@ -13675,15 +15290,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"InProgress","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"InProgress","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -13692,7 +15307,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:03 GMT + - Fri, 15 Jan 2021 14:19:24 GMT expires: - '-1' pragma: @@ -13708,7 +15323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '73' x-powered-by: - ASP.NET status: @@ -13729,15 +15344,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/b9f1ee3b-435f-4113-a8da-83c709fe875d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0cdbb7b-ef21-4c68-9912-09c4ee75f00c?api-version=2020-10-01 response: body: - string: '{"id":"b9f1ee3b-435f-4113-a8da-83c709fe875d","name":"b9f1ee3b-435f-4113-a8da-83c709fe875d","status":"Succeeded","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"2020-12-18T10:34:12.8990835Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3fcfcfc9-1958-40d2-b1a3-1a1a850173a8"}}' + string: '{"id":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","name":"e0cdbb7b-ef21-4c68-9912-09c4ee75f00c","status":"Succeeded","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"2021-01-15T14:17:44.7092834Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d5ec714d-ba16-4c5c-afc8-2d98402fd556"}}' headers: cache-control: - no-cache @@ -13746,7 +15361,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:05 GMT + - Fri, 15 Jan 2021 14:19:26 GMT expires: - '-1' pragma: @@ -13762,7 +15377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '72' x-powered-by: - ASP.NET status: @@ -13783,16 +15398,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3fcfcfc9-1958-40d2-b1a3-1a1a850173a8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d5ec714d-ba16-4c5c-afc8-2d98402fd556?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3fcfcfc9-1958-40d2-b1a3-1a1a850173a8","name":"3fcfcfc9-1958-40d2-b1a3-1a1a850173a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT1M51.4360512S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000006","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T10:34:12.8990835Z","endTime":"2020-12-18T10:36:04.3351347Z","activityId":"8f2de9a8-411c-11eb-9659-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d5ec714d-ba16-4c5c-afc8-2d98402fd556","name":"d5ec714d-ba16-4c5c-afc8-2d98402fd556","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000006","duration":"PT1M41.3612189S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000006","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000006","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:17:44.7092834Z","endTime":"2021-01-15T14:19:26.0705023Z","activityId":"6ed85e88-573c-11eb-b156-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13801,7 +15416,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:06 GMT + - Fri, 15 Jan 2021 14:19:27 GMT expires: - '-1' pragma: @@ -13818,7 +15433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -13840,8 +15455,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -13855,7 +15470,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:36:15 GMT + - Fri, 15 Jan 2021 14:19:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_protection.yaml index d58050e7c90..ebf1c614529 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_protection.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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-01-16T07%3A58%3A52.1961785Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:33 GMT + - Sat, 16 Jan 2021 07:58:52 GMT expires: - '-1' pragma: @@ -64,12 +64,12 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:33 GMT + - Sat, 16 Jan 2021 07:58:53 GMT expires: - '-1' pragma: @@ -122,12 +122,12 @@ interactions: ParameterSetName: - -n -g --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -139,7 +139,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:36:34 GMT + - Sat, 16 Jan 2021 07:58:53 GMT expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -175,15 +175,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T10:36:21Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-16T07:58:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -192,7 +192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:36:35 GMT + - Sat, 16 Jan 2021 07:58:54 GMT expires: - '-1' pragma: @@ -271,35 +271,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 10:36:36 GMT + - Sat, 16 Jan 2021 07:58:55 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 10:41:36 GMT + - Sat, 16 Jan 2021 08:03:55 GMT source-age: - - '201' + - '261' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - MISS, HIT x-cache-hits: - - 2, 0 + - 0, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 8a4fc0ea2c8e54625fa6b5af6b62b5eb7e3cd5a7 + - 110eae7ff08a4c04aa05c6ae1d5863f0675cbe7b x-frame-options: - deny x-github-request-id: - - D920:4F30:C02CD:DA7F4:5FDC83F1 + - 4958:6BF0:159BF2:16D065:60027BE5 x-served-by: - - cache-mia11333-MIA + - cache-sin18042-SIN x-timer: - - S1608287796.162372,VS0,VE26 + - S1610783935.220496,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -309,7 +309,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -319,10 +319,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -336,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:36:36 GMT + - Sat, 16 Jan 2021 07:58:55 GMT expires: - '-1' pragma: @@ -404,26 +401,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_xZDhL25juEAOMqgAINQbN0Ch0vH4hmpG","name":"vm_deploy_xZDhL25juEAOMqgAINQbN0Ch0vH4hmpG","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6427174425969535194","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T10:36:42.3685158Z","duration":"PT3.1624876S","correlationId":"4c899ff7-a839-426e-bd8c-4676c397909e","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_GlUTa0LvicoNQK8MfoOuDgebx9FeUjfr","name":"vm_deploy_GlUTa0LvicoNQK8MfoOuDgebx9FeUjfr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4074488247978772753","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-16T07:58:57.2226717Z","duration":"PT1.100807S","correlationId":"8fa54b5f-55ac-4b7b-8feb-2036c5352701","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_xZDhL25juEAOMqgAINQbN0Ch0vH4hmpG/operationStatuses/08585933190862715996?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_GlUTa0LvicoNQK8MfoOuDgebx9FeUjfr/operationStatuses/08585908229493557651?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2960' + - '2959' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:36:43 GMT + - Sat, 16 Jan 2021 07:58:57 GMT expires: - '-1' pragma: @@ -433,7 +430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -451,10 +448,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229493557651?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: + - Sat, 16 Jan 2021 07:59:27 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229493557651?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: + - Sat, 16 Jan 2021 07:59:58 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933190862715996?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229493557651?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -466,7 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:15 GMT + - Sat, 16 Jan 2021 08:00:28 GMT expires: - '-1' pragma: @@ -494,10 +577,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933190862715996?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908229493557651?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -509,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:45 GMT + - Sat, 16 Jan 2021 08:00:57 GMT expires: - '-1' pragma: @@ -537,22 +620,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_xZDhL25juEAOMqgAINQbN0Ch0vH4hmpG","name":"vm_deploy_xZDhL25juEAOMqgAINQbN0Ch0vH4hmpG","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6427174425969535194","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T10:37:32.6903061Z","duration":"PT53.4842779S","correlationId":"4c899ff7-a839-426e-bd8c-4676c397909e","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_GlUTa0LvicoNQK8MfoOuDgebx9FeUjfr","name":"vm_deploy_GlUTa0LvicoNQK8MfoOuDgebx9FeUjfr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4074488247978772753","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-16T08:00:37.1487931Z","duration":"PT1M41.0269284S","correlationId":"8fa54b5f-55ac-4b7b-8feb-2036c5352701","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: - - '4085' + - '4087' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:46 GMT + - Sat, 16 Jan 2021 08:00:58 GMT expires: - '-1' pragma: @@ -580,7 +663,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -589,16 +672,16 @@ interactions: \ \"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\": \"7f19a4a0-55cf-4764-8ecd-f069fa7acf15\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a0fb0181-91fc-46d0-83cd-bf31449ed731\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b25c7492ff8b42b390e103dd0398dcd8\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\",\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_disk1_b25c7492ff8b42b390e103dd0398dcd8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\"\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\": @@ -612,16 +695,16 @@ interactions: \ {\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\": \"2020-12-18T10:37:47+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T08:00:59+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_b25c7492ff8b42b390e103dd0398dcd8\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:37:07.6673708+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.2485397+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:37:31.1832969+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-16T08:00:36.2481293+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}" @@ -629,11 +712,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:46 GMT + - Sat, 16 Jan 2021 08:00:58 GMT expires: - '-1' pragma: @@ -650,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31970 + - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31976 status: code: 200 message: OK @@ -658,7 +741,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -668,23 +751,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"4e531933-9499-4881-a560-e800b6cdd2aa\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4cb0ec65-0d83-45da-8703-17f0d65e501b\\\"\",\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\": \"72e46ffb-e273-4e88-9385-71e0a8d4707e\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e5d9866f-d646-452a-ab0f-996effa1d88e\",\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/\\\"4e531933-9499-4881-a560-e800b6cdd2aa\\\"\",\r\n + \ \"etag\": \"W/\\\"4cb0ec65-0d83-45da-8703-17f0d65e501b\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -693,8 +773,8 @@ interactions: \ },\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\": - \"51je5ajy0haevnestldco1axba.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-83-94\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"z1nafi2jbwbevibo01xxvsysce.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C8-B9-4A\",\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\": @@ -708,9 +788,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:47 GMT + - Sat, 16 Jan 2021 08:00:59 GMT etag: - - W/"4e531933-9499-4881-a560-e800b6cdd2aa" + - W/"4cb0ec65-0d83-45da-8703-17f0d65e501b" expires: - '-1' pragma: @@ -727,7 +807,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d39dbd17-ad23-4c2f-9ab9-f6f91298aa1b + - 1b7193a7-38b4-41da-8916-fe3b2d07cd91 status: code: 200 message: OK @@ -735,7 +815,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -745,22 +825,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"7ed1a86f-d20e-4191-b563-b5db4ca9f738\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f7df06f1-dd20-4d55-a2d3-897c5746f00e\\\"\",\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\": \"3f276d63-4cea-4ecc-9c1d-0b39a9d1b796\",\r\n - \ \"ipAddress\": \"137.116.148.160\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"5b6d6812-d508-4123-936a-dcf847f10e68\",\r\n + \ \"ipAddress\": \"52.163.85.125\",\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}" @@ -768,13 +845,13 @@ interactions: cache-control: - no-cache content-length: - - '1184' + - '1182' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:48 GMT + - Sat, 16 Jan 2021 08:00:59 GMT etag: - - W/"7ed1a86f-d20e-4191-b563-b5db4ca9f738" + - W/"f7df06f1-dd20-4d55-a2d3-897c5746f00e" expires: - '-1' pragma: @@ -791,7 +868,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f1e7d3b-1e43-443d-ab76-450d3a6b3c5a + - 205684ec-ea09-4c27-a85b-c768a816b849 status: code: 200 message: OK @@ -809,7 +886,7 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?api-version=2020-06-01 response: @@ -818,16 +895,16 @@ interactions: \ \"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\": \"7f19a4a0-55cf-4764-8ecd-f069fa7acf15\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a0fb0181-91fc-46d0-83cd-bf31449ed731\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b25c7492ff8b42b390e103dd0398dcd8\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\",\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_disk1_b25c7492ff8b42b390e103dd0398dcd8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\"\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\": @@ -841,11 +918,11 @@ interactions: cache-control: - no-cache content-length: - - '2204' + - '2210' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:48 GMT + - Sat, 16 Jan 2021 08:01:00 GMT expires: - '-1' pragma: @@ -862,7 +939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31969 + - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31974 status: code: 200 message: OK @@ -880,24 +957,40 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"Issue133VaultTwo","etag":"W/\"datetime''2020-10-08T21%3A11%3A10.2885322Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bd258003-d032-436b-91a3-d246c6c586d9","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133Vault","etag":"W/\"datetime''2020-10-07T15%3A01%3A02.6385376Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"db162643-23c2-45ba-aff1-d1b429353bda","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133VaultP2","etag":"W/\"datetime''2020-10-07T15%3A06%3A10.4024415Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6daa354b-b8f0-4d51-8b93-06c1329c758e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"VaultTwo132","etag":"W/\"datetime''2020-10-08T23%3A19%3A21.36034Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d2011342-6a45-44b7-b263-4cbcf849c042","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"what-if-dania-vault","etag":"W/\"datetime''2020-08-18T15%3A28%3A15.8086333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault3cpmb5svk72","etag":"W/\"datetime''2020-12-18T08%3A53%3A23.3142838Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzdobuyl7nxx","etag":"W/\"datetime''2020-12-18T08%3A59%3A23.2409251Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultow7ptzv7op5","etag":"W/\"datetime''2020-12-18T07%3A08%3A56.1522303Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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: "{\"value\":[{\"location\":\"westus\",\"name\":\"sdfjsldkj\",\"etag\":\"W/\\\"datetime'2017-12-11T09%3A43%3A03.5196627Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"jakavetVault\",\"etag\":\"W/\\\"datetime'2018-01-11T11%3A42%3A45.0018104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"JeremyVault\",\"etag\":\"W/\\\"datetime'2018-06-19T09%3A08%3A25.1865377Z'\\\"\",\"tags\":{\"tagtest\":\"wow\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"PSTestRSVcaf8ab5e\",\"etag\":\"W/\\\"datetime'2019-08-20T05%3A03%3A40.2572426Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"sarath\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sarathwusvault\",\"etag\":\"W/\\\"datetime'2020-01-27T06%3A24%3A46.2941609Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sdkvault\",\"etag\":\"W/\\\"datetime'2019-12-12T10%3A27%3A50.3495993Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sisi-RSV-29-6\",\"etag\":\"W/\\\"datetime'2019-12-16T08%3A43%3A12.6517378Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"vsarg-RS-WUS-1606\",\"etag\":\"W/\\\"datetime'2017-02-07T18%3A58%3A29.852034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseCanaryTestVault\",\"etag\":\"W/\\\"datetime'2020-04-17T07%3A06%3A03.2954641Z'\\\"\",\"tags\":{\"DeleteBy\":\"01-2025\",\"Owner\":\"akkanase\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaTest-vault\",\"etag\":\"W/\\\"datetime'2020-05-26T09%3A16%3A21.6796175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshcVault\",\"etag\":\"W/\\\"datetime'2018-09-06T05%3A48%3A33.9799251Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"aruvault1\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.158366Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshc1\",\"etag\":\"W/\\\"datetime'2018-06-21T06%3A30%3A51.0380744Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"canadavault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A44.5324269Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"SqlBackupDemoVault\",\"etag\":\"W/\\\"datetime'2019-03-26T16%3A33%3A24.2652857Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"sarathwcus\",\"etag\":\"W/\\\"datetime'2020-06-02T09%3A42%3A26.1365683Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"suchandr-test-rsv-wcus\",\"etag\":\"W/\\\"datetime'2018-12-18T12%3A01%3A19.7479465Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"hanauks\",\"etag\":\"W/\\\"datetime'2020-01-27T12%3A24%3A14.6254633Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"vault146\",\"etag\":\"W/\\\"datetime'2020-07-14T09%3A01%3A58.4314866Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault-ccy\",\"etag\":\"W/\\\"datetime'2020-11-06T17%3A46%3A41.0750761Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaSrcVault\",\"etag\":\"W/\\\"datetime'2020-12-15T03%3A04%3A07.0133927Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV0e34df9d\",\"etag\":\"W/\\\"datetime'2020-08-26T05%3A47%3A47.270814Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV54548c5f\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A35%3A53.0022191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV66424fe3\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A19%3A16.4073513Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"shracvaultcredtest\",\"etag\":\"W/\\\"datetime'2020-01-09T09%3A07%3A40.7685275Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"softdletevault\",\"etag\":\"W/\\\"datetime'2020-05-12T11%3A05%3A20.5870395Z'\\\"\",\"tags\":{\"MABUsed\":\" + Yes\",\"DeleteBy\":\"05-2022\",\"Owner\":\"sarath\",\"Purpose\":\" Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRSVault\",\"etag\":\"W/\\\"datetime'2020-12-18T07%3A21%3A25.446244Z'\\\"\",\"tags\":{\"Mab + Used\":\"yes\",\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akneema-vault-new\",\"etag\":\"W/\\\"datetime'2020-10-21T05%3A41%3A56.9405248Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"aseecyvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A42.302062Z'\\\"\",\"tags\":{\"Owner\":\"nilsha\",\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amchandnTest1s\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.8223319Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A03.0272582Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault528\",\"etag\":\"W/\\\"datetime'2020-06-24T05%3A42%3A37.2089559Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseSdKTesting\",\"etag\":\"W/\\\"datetime'2020-12-15T14%3A32%3A44.5929452Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"MAB + Used\":\"Yes\",\"Delete By\":\"01-2021\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a6b049a5-e7c2-42c8-913c-01b5423def92\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2020-08-18T08%3A16%3A08.528991Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"anagra-seacanary-vault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.6560655Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"geetavaultbanner3\",\"etag\":\"W/\\\"datetime'2020-07-03T16%3A10%3A09.9176441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"Anjor-RSVSeaCan\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.8370807Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-02-16T19%3A11%3A01.8675856Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault2\",\"etag\":\"W/\\\"datetime'2019-07-15T10%3A34%3A19.1582447Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gaallatest2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A13.5673429Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CasabaVault3827\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.7412548Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoobanner8vault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A47%3A24.3687092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault576\",\"etag\":\"W/\\\"datetime'2019-10-04T16%3A20%3A10.9839701Z'\\\"\",\"tags\":{\"Purpose\":\" + Testing\",\"Owner\":\"chgonugu\",\"MAB Used\":\" Yes\",\"DeleteBy\":\"12-2019\",\"Delete + By\":\"12-2019\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault941\",\"etag\":\"W/\\\"datetime'2019-11-04T12%3A08%3A34.6837353Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-16116dddddddddddddddddddddddddddd\",\"etag\":\"W/\\\"datetime'2018-02-23T09%3A54%3A52.8285034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaultyjoinjawcvn\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.3813542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaulttw65usomtlg\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A51.7677711Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.1961785Z'\\\"\",\"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\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault76igf7p7gcj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.9138606Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault5kfc7hegvxj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A53.0009434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CanaryVenusEndtoEnd\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.7700177Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGCanary/providers/Microsoft.RecoveryServices/vaults/CanaryVenusEndtoEnd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"DinosVaultUR1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A19.949397Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.RecoveryServices/vaults/DinosVaultUR1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo8\",\"etag\":\"W/\\\"datetime'2020-07-14T06%3A14%3A12.5377965Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A14%3A35.1228473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovaultbanner\",\"etag\":\"W/\\\"datetime'2020-07-05T12%3A22%3A20.1815359Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovaultbanner\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault787\",\"etag\":\"W/\\\"datetime'2020-07-09T11%3A58%3A38.7939306Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault787\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault851\",\"etag\":\"W/\\\"datetime'2020-07-03T14%3A39%3A01.0850308Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault851\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"jakavetSEAvault\",\"etag\":\"W/\\\"datetime'2018-07-18T11%3A03%3A48.0478445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetSEAvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NilayVault\",\"etag\":\"W/\\\"datetime'2020-02-10T18%3A58%3A58.3339904Z'\\\"\",\"tags\":{\"MAB + Used\":\"\_Yes\",\"Owner\":\"nilsha\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"nilshaafstestvault\",\"etag\":\"W/\\\"datetime'2020-02-06T04%3A15%3A27.8703969Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilshaafstest/providers/Microsoft.RecoveryServices/vaults/nilshaafstestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NirajKCanVault1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A24.9934424Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NirajKCanVault2/providers/Microsoft.RecoveryServices/vaults/NirajKCanVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestFSRSV1bca8f8e\",\"etag\":\"W/\\\"datetime'2019-04-03T12%3A20%3A24.6265273Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG1bca8f8e/providers/Microsoft.RecoveryServices/vaults/PSTestFSRSV1bca8f8e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"pstestwlRSV1bca8\",\"etag\":\"W/\\\"datetime'2019-10-30T10%3A18%3A53.8483283Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"rajkstestcm01\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A27.3524558Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajkstestcm01/providers/Microsoft.RecoveryServices/vaults/rajkstestcm01\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sam-rv-sea-can\",\"etag\":\"W/\\\"datetime'2018-02-28T10%3A01%3A22.1790616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.RecoveryServices/vaults/sam-rv-sea-can\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault\",\"etag\":\"W/\\\"datetime'2020-12-09T08%3A59%3A05.1553594Z'\\\"\",\"tags\":{\"c\":\"d\",\"a\":\"b\",\"e\":\"f\",\"g\":\"h\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0796693d-c630-49a3-813b-3715e183591d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault2\",\"etag\":\"W/\\\"datetime'2020-10-09T10%3A00%3A34.8337394Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"MercuryCertRolloverRSVSeaCan\",\"etag\":\"W/\\\"datetime'2018-10-12T07%3A49%3A47.2265436Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/seacanrg/providers/Microsoft.RecoveryServices/vaults/MercuryCertRolloverRSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A29.3044784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A31.4374909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shrja-vault\",\"etag\":\"W/\\\"datetime'2020-07-06T11%3A36%3A46.4737448Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.RecoveryServices/vaults/shrja-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shswain-rsvault-donotuse\",\"etag\":\"W/\\\"datetime'2020-04-16T11%3A29%3A00.0740566Z'\\\"\",\"tags\":{\"Owner\":\"shswai\",\"Purpose\":\"Dev + Testing\",\"DeleteBy\":\"12-2022\",\"MAB Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newgeetvault\",\"etag\":\"W/\\\"datetime'2020-12-09T06%3A14%3A11.3615575Z'\\\"\",\"tags\":{\"AutoShutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"MABUsed\":\"Yes\",\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"suchandr-test-vault\",\"etag\":\"W/\\\"datetime'2018-12-18T09%3A31%3A05.8772232Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"ContosoVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A34.1345159Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhRG/providers/Microsoft.RecoveryServices/vaults/ContosoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-sea-RS-1606\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A40.9305725Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-sea-RS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}]}" headers: cache-control: - no-cache content-length: - - '5008' + - '37548' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:37:50 GMT + - Sat, 16 Jan 2021 08:01:02 GMT expires: - '-1' pragma: @@ -909,9 +1002,16 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 1ae38fef-8047-4e77-859b-d5da6b1d0547 - - 1ae38fef-8047-4e77-859b-d5da6b1d0547 - - 1ae38fef-8047-4e77-859b-d5da6b1d0547 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 + - 5e152339-a28b-48a1-bba7-c5757ad3d8f3 status: code: 200 message: OK @@ -929,12 +1029,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -946,7 +1046,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:50 GMT + - Sat, 16 Jan 2021 08:01:05 GMT expires: - '-1' pragma: @@ -982,24 +1082,29 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtvm1/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"asebvtvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:10:14.4183469Z","protectedItemDataId":"263883848880839","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:10:25.889668Z"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '2019' content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:52 GMT + - Sat, 16 Jan 2021 08:01:08 GMT expires: - '-1' pragma: @@ -1035,12 +1140,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1052,7 +1157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:53 GMT + - Sat, 16 Jan 2021 08:01:12 GMT expires: - '-1' pragma: @@ -1088,12 +1193,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1105,7 +1210,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:53 GMT + - Sat, 16 Jan 2021 08:01:14 GMT expires: - '-1' pragma: @@ -1141,26 +1246,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwusvault/backupProtectedItems?api-version=2020-10-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/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;template-specs-dania/protectedItems/VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","name":"VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"Template-Specs-Dania","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","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":"2020-08-28T01:23:18.0375903Z","protectedItemDataId":"932350677515017022","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;template-specs-dania","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:23:20.9520834Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;windowswhatif/protectedItems/VM;iaasvmcontainerv2;templatespecscli;windowswhatif","name":"VM;iaasvmcontainerv2;templatespecscli;windowswhatif","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"WindowsWhatIf","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","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":"2020-08-28T01:18:12.7878829Z","protectedItemDataId":"932350676653089390","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;windowswhatif","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:18:15.7642592Z"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3478' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:54 GMT + - Sat, 16 Jan 2021 08:01:15 GMT expires: - '-1' pragma: @@ -1176,7 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1196,24 +1299,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault/backupProtectedItems?api-version=2020-10-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.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmapgzg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:29.9122014Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:20:33.4639512"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmncbud","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198987865464","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:48.8256655Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:20:52.3774153"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3725' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:55 GMT + - Sat, 16 Jan 2021 08:01:17 GMT expires: - '-1' pragma: @@ -1249,26 +1352,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6/backupProtectedItems?api-version=2020-10-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.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp/protectedItems/VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","name":"VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job - is cancelled.","recommendations":[]}]}},"friendlyName":"clitest-vm73ggp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-18T09:02:51.1460143Z","deferredDeleteTimeInUTC":"2020-12-18T10:26:12.4068784Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:48:14.1074598"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2453' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:37:58 GMT + - Sat, 16 Jan 2021 08:01:21 GMT expires: - '-1' pragma: @@ -1304,24 +1405,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606/backupProtectedItems?api-version=2020-10-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.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmoo3ce","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605737359848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:13:52.6202294Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:35:52.3849214"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmpuclh","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:14:11.4529936Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:36:11.2176856"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3725' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:00 GMT + - Sat, 16 Jan 2021 08:01:22 GMT expires: - '-1' pragma: @@ -1337,7 +1438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1357,12 +1458,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -1374,7 +1475,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:01 GMT + - Sat, 16 Jan 2021 08:01:23 GMT expires: - '-1' pragma: @@ -1404,73 +1505,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US 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=2020-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 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\": \"7f19a4a0-55cf-4764-8ecd-f069fa7acf15\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_b25c7492ff8b42b390e103dd0398dcd8\",\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_disk1_b25c7492ff8b42b390e103dd0398dcd8\"\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 - \ }\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\": \"2020-12-18T10:38:02+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_b25c7492ff8b42b390e103dd0398dcd8\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:37:07.6673708+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:37:31.1832969+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}" + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3449' + - '12' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 10:38:02 GMT + - Sat, 16 Jan 2021 08:01:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1479,8 +1543,10 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31966 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -1492,30 +1558,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '539' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:03 GMT + - Sat, 16 Jan 2021 08:01:24 GMT expires: - '-1' pragma: @@ -1530,6 +1596,10 @@ interactions: - 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 @@ -1541,30 +1611,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 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":["2020-12-18T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '828' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:05 GMT + - Sat, 16 Jan 2021 08:01:26 GMT expires: - '-1' pragma: @@ -1580,7 +1650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1594,30 +1664,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1/backupProtectedItems?api-version=2020-10-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.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej/protectableItems/vm;iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej","name":"iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l/providers/Microsoft.Compute/virtualMachines/clitest-vmkwlej","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmkwlej","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmuqb34/protectableItems/vm;iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmuqb34","name":"iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmuqb34","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l/providers/Microsoft.Compute/virtualMachines/clitest-vmuqb34","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmuqb34","protectionState":"NotProtected"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2531' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:07 GMT + - Sat, 16 Jan 2021 08:01:25 GMT expires: - '-1' pragma: @@ -1633,7 +1703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1647,49 +1717,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[]}' 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:10 GMT + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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: @@ -1698,45 +1770,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:12 GMT + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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: - - '149' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1745,45 +1823,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:13 GMT + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1792,36 +1876,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:15 GMT + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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: @@ -1829,8 +1919,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1839,36 +1929,215 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '0' + - '12' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:16 GMT + - Sat, 16 Jan 2021 08:01: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 protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/vault146/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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 protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-ccy/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"akneema-hana-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:30:58.3850322Z","protectedItemDataId":"1366978781","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;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/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:31:04.1075006Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-sql-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","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-01-16T03:37:15.4034514Z","protectedItemDataId":"1527441871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:37:19.0000538Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-16T03:31:11.8508231Z","protectedItemDataId":"119104222","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T03:31:39.2850408Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5878' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupProtectedItems?api-version=2020-10-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/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","name":"VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:42:06.7703986Z","protectedItemDataId":"35184458305137","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1958' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: @@ -1876,8 +2145,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1886,45 +2155,55 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3/protectedItems/VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","name":"VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM0e34d3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:46:31.8022704Z","protectedItemDataId":"140738989571218","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '2023' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:18 GMT + - Sat, 16 Jan 2021 08:01: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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: - - '145' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1933,45 +2212,8158 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM545483","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","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-01-15T21:34:06.6120994Z","protectedItemDataId":"70370838940336","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:34:11.2719107Z"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '1817' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:19 GMT + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupProtectedItems?api-version=2020-10-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/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM664243","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","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-01-15T21:06:44.4996797Z","protectedItemDataId":"140739447045620","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:06:56.7157962Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1818' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupProtectedItems?api-version=2020-10-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/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanaselrs;akkanaselrstest/protectedItems/VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","name":"VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","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-01-15T17:01:27.6629072Z","protectedItemDataId":"52778032964849","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanaselrs;akkanaselrstest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T17:01:30.7079738Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1834' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm-new/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-15T15:40:22.3288383Z","protectedItemDataId":"52777015471742","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema;akneema-hana-vm-new","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T15:37:06.7393487Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2294' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:01: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupProtectedItems?api-version=2020-10-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/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-test2/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-test2","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-test2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sarath-test2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1864336160","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-test2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1418' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupProtectedItems?api-version=2020-10-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/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;testbackupvm/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","name":"VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400138,"title":"UserErrorSubnetNotFoundV2","message":"Subnet + doesn''t exist.","recommendations":["Please make sure that subnet exists or + select a different subnet."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}]}},"friendlyName":"TestBackupVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-11-24T07:12:36.4187251Z","protectedItemDataId":"1121317794","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;testbackupvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-10-29T07:05:21.832114Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2490' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","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-01-15T18:10:14.8103493Z","protectedItemDataId":"17593156659350","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T18:10:18.4942788Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupProtectedItems?api-version=2020-10-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/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","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-01-15T18:02:11.2205131Z","protectedItemDataId":"2124204057","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupPolicies/testgeeta","policyName":"testgeeta","lastRecoveryPoint":"2021-01-15T18:02:16.8403179Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1808' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupProtectedItems?api-version=2020-10-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/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testvmsqlchg/protectedItems/VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","name":"VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmsqlchg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","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-01-15T22:09:15.3937947Z","protectedItemDataId":"17592392492659","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;chandrikarg;testvmsqlchg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T22:09:22.2357574Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1797' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGCanary/providers/Microsoft.RecoveryServices/vaults/CanaryVenusEndtoEnd/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.RecoveryServices/vaults/DinosVaultUR1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupProtectedItems?api-version=2020-10-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/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}]}},"friendlyName":"geetasqlvmbanner14","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner14","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-15T16:09:14.2584534Z","protectedItemDataId":"70370526978085","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner14","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T16:06:07.8962674Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","name":"VM;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"geetsqlvmbanner1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetsqlvmbanner1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-15T16:06:22.2478471Z","protectedItemDataId":"70370134670681","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetsqlvmbanner1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T16:06:33.2495808Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4398' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovaultbanner/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault787/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault851/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetSEAvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupProtectedItems?api-version=2020-10-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/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtseavm2/protectedItems/VM;iaasvmcontainerv2;asebvtrg;asebvtseavm2","name":"VM;iaasvmcontainerv2;asebvtrg;asebvtseavm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"asebvtseavm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm2","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-01-15T15:08:14.4594937Z","protectedItemDataId":"35185801335735","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;asebvtrg;asebvtseavm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/dailypol567","policyName":"dailypol567","lastRecoveryPoint":"2021-01-15T15:08:23.2514684Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;dinosrgur1;sdsadsad/protectedItems/VM;iaasvmcontainerv2;dinosrgur1;sdsadsad","name":"VM;iaasvmcontainerv2;dinosrgur1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400196,"title":"UserErrorGuestAgentStatusUnavailable","message":"VM + agent is unable to communicate with the Azure Backup Service.","recommendations":["Ensure + that VM agent is latest and running. Allow access to IP 168.63.129.16 (refer + https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-windows#network-access + ). For more information, please refer to https://aka.ms/guestagent-status-unavailable + "]}]}},"friendlyName":"sdsadsad","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","healthStatus":"ActionSuggested","healthDetails":[{"code":400196,"title":"UserErrorGuestAgentStatusUnavailable","message":"VM + agent is unable to communicate with the Azure Backup Service.","recommendations":["Ensure + that VM agent is latest and running. Allow access to IP 168.63.129.16 (refer + https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-windows#network-access + ). For more information, please refer to https://aka.ms/guestagent-status-unavailable + "]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-10-11T16:07:11.6608253Z","protectedItemDataId":"35184869793789","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;dinosrgur1;sdsadsad","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","policyId":"","policyName":"","lastRecoveryPoint":"2020-07-27T16:03:37.6716963Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranisd02;mkheranisd02/protectedItems/VM;iaasvmcontainerv2;mkheranisd02;mkheranisd02","name":"VM;iaasvmcontainerv2;mkheranisd02;mkheranisd02","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}]}},"friendlyName":"mkheranisd02","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranisd02/providers/Microsoft.Compute/virtualMachines/mkheranisd02","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-09-25T11:49:46.4866891Z","protectedItemDataId":"35185066038379","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;mkheranisd02;mkheranisd02","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranisd02/providers/Microsoft.Compute/virtualMachines/mkheranisd02","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/weeklypolicy3","policyName":"weeklypolicy3","lastRecoveryPoint":"2020-09-13T22:38:39.3505175Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6107' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilshaafstest/providers/Microsoft.RecoveryServices/vaults/nilshaafstestvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NirajKCanVault2/providers/Microsoft.RecoveryServices/vaults/NirajKCanVault1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG1bca8f8e/providers/Microsoft.RecoveryServices/vaults/PSTestFSRSV1bca8f8e/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajkstestcm01/providers/Microsoft.RecoveryServices/vaults/rajkstestcm01/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.RecoveryServices/vaults/sam-rv-sea-can/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/backupProtectedItems?api-version=2020-10-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/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;dikextest/protectedItems/VM;iaasvmcontainerv2;sarath-rg;dikextest","name":"VM;iaasvmcontainerv2;sarath-rg;dikextest","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":"dikextest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest","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-01-15T21:06:32.9577544Z","protectedItemDataId":"70370353422863","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;dikextest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/adi-afec-2","policyName":"adi-afec-2","lastRecoveryPoint":"2021-01-15T21:06:42.3168928Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1914' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault2/backupProtectedItems?api-version=2020-10-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/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-unman-vm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-unman-vm","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-unman-vm","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":"sarath-unman-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-unman-vm","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":"2020-10-06T17:01:17.1475898Z","protectedItemDataId":"70370257865258","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-unman-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-unman-vm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-10-06T17:01:36.6684066Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1964' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/seacanrg/providers/Microsoft.RecoveryServices/vaults/MercuryCertRolloverRSVSeaCan/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.RecoveryServices/vaults/shrja-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupProtectedItems?api-version=2020-10-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/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlvmgeeta/protectedItems/VM;iaasvmcontainerv2;gesahoo;sqlvmgeeta","name":"VM;iaasvmcontainerv2;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqlvmgeeta","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-08-03T21:11:54.396728Z","protectedItemDataId":"52777469928480","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;sqlvmgeeta","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta","policyId":"","policyName":"","lastRecoveryPoint":"2020-08-03T21:11:58.2650769Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"shswain-lin-man-pssd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd","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-01-16T00:09:16.3045333Z","protectedItemDataId":"52777211426397","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/shswainpolicy-donotuse","policyName":"shswainpolicy-donotuse","lastRecoveryPoint":"2021-01-16T00:09:21.1532978Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","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":"shswain-lin-unman-shdd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd","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-01-16T00:07:40.6173628Z","protectedItemDataId":"52778470662281","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/shswainpolicy-donotuse","policyName":"shswainpolicy-donotuse","lastRecoveryPoint":"2021-01-16T00:07:43.3076516Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5497' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupProtectedItems?api-version=2020-10-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/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;testgeet1_group;testgeet1/protectedItems/VM;iaasvmcontainerv2;testgeet1_group;testgeet1","name":"VM;iaasvmcontainerv2;testgeet1_group;testgeet1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgeet1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.Compute/virtualMachines/testgeet1","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"412327963","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;testgeet1_group;testgeet1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.Compute/virtualMachines/testgeet1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupPolicies/geetnewpolicy","policyName":"geetnewpolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1412' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhRG/providers/Microsoft.RecoveryServices/vaults/ContosoVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-sea-RS-1606/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:02: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: + - '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: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-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\": \"a0fb0181-91fc-46d0-83cd-bf31449ed731\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\",\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_41da376751d942909b7bbced58feac0d\"\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 + \ }\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 \"computerName\": + \"clitest-vm000003\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n + \ \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"2.7.41491.1004\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and processing the extensions.\",\r\n + \ \"time\": \"2021-01-16T08:02:20+00:00\"\r\n }\r\n ]\r\n + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"clitest-vm000003_OsDisk_1_41da376751d942909b7bbced58feac0d\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-16T07:59:15.2485397+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-01-16T08:00:36.2481293+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: + - '3583' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 16 Jan 2021 08:02:26 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;3965,Microsoft.Compute/LowCostGet30Min;31957 + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + 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-01-16T07%3A58%3A52.1961785Z''\"","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: + - Sat, 16 Jan 2021 08:03: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 + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T17: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: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs/protectableItems/vm;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","name":"iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmgtwfs","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","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;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36576' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs/protectableItems/vm;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","name":"iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmgtwfs","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","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;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '36576' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 08:03:08 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-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-vm + Connection: + - keep-alive + ParameterSetName: + - -g -v --vm -p + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"InProgress","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/8f1258d7-7261-4bb5-b8c9-7aba09d34ec2?api-version=2020-10-01 + response: + body: + string: '{"id":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","name":"8f1258d7-7261-4bb5-b8c9-7aba09d34ec2","status":"Succeeded","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"2021-01-16T08:03:08.1954761Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d578e348-02df-4179-a9b1-7098164575df"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/d578e348-02df-4179-a9b1-7098164575df?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d578e348-02df-4179-a9b1-7098164575df","name":"d578e348-02df-4179-a9b1-7098164575df","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.7777924S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T08:03:08.1954761Z","endTime":"2021-01-16T08:03:39.9732685Z","activityId":"2ba0171d-57d1-11eb-944e-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup vault show + Connection: + - keep-alive + ParameterSetName: + - -g -n --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + 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-01-16T07%3A58%3A52.1961785Z''\"","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: + - Sat, 16 Jan 2021 08:03: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 + response: + body: + string: "{\"value\":[{\"location\":\"westus\",\"name\":\"sdfjsldkj\",\"etag\":\"W/\\\"datetime'2017-12-11T09%3A43%3A03.5196627Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"jakavetVault\",\"etag\":\"W/\\\"datetime'2018-01-11T11%3A42%3A45.0018104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"JeremyVault\",\"etag\":\"W/\\\"datetime'2018-06-19T09%3A08%3A25.1865377Z'\\\"\",\"tags\":{\"tagtest\":\"wow\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"PSTestRSVcaf8ab5e\",\"etag\":\"W/\\\"datetime'2019-08-20T05%3A03%3A40.2572426Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"sarath\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sarathwusvault\",\"etag\":\"W/\\\"datetime'2020-01-27T06%3A24%3A46.2941609Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sdkvault\",\"etag\":\"W/\\\"datetime'2019-12-12T10%3A27%3A50.3495993Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sisi-RSV-29-6\",\"etag\":\"W/\\\"datetime'2019-12-16T08%3A43%3A12.6517378Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"vsarg-RS-WUS-1606\",\"etag\":\"W/\\\"datetime'2017-02-07T18%3A58%3A29.852034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseCanaryTestVault\",\"etag\":\"W/\\\"datetime'2020-04-17T07%3A06%3A03.2954641Z'\\\"\",\"tags\":{\"DeleteBy\":\"01-2025\",\"Owner\":\"akkanase\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaTest-vault\",\"etag\":\"W/\\\"datetime'2020-05-26T09%3A16%3A21.6796175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshcVault\",\"etag\":\"W/\\\"datetime'2018-09-06T05%3A48%3A33.9799251Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"aruvault1\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.158366Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshc1\",\"etag\":\"W/\\\"datetime'2018-06-21T06%3A30%3A51.0380744Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"canadavault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A44.5324269Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"SqlBackupDemoVault\",\"etag\":\"W/\\\"datetime'2019-03-26T16%3A33%3A24.2652857Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"sarathwcus\",\"etag\":\"W/\\\"datetime'2020-06-02T09%3A42%3A26.1365683Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"suchandr-test-rsv-wcus\",\"etag\":\"W/\\\"datetime'2018-12-18T12%3A01%3A19.7479465Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"hanauks\",\"etag\":\"W/\\\"datetime'2020-01-27T12%3A24%3A14.6254633Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"vault146\",\"etag\":\"W/\\\"datetime'2020-07-14T09%3A01%3A58.4314866Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault-ccy\",\"etag\":\"W/\\\"datetime'2020-11-06T17%3A46%3A41.0750761Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaSrcVault\",\"etag\":\"W/\\\"datetime'2020-12-15T03%3A04%3A07.0133927Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV0e34df9d\",\"etag\":\"W/\\\"datetime'2020-08-26T05%3A47%3A47.270814Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV54548c5f\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A35%3A53.0022191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV66424fe3\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A19%3A16.4073513Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"shracvaultcredtest\",\"etag\":\"W/\\\"datetime'2020-01-09T09%3A07%3A40.7685275Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"softdletevault\",\"etag\":\"W/\\\"datetime'2020-05-12T11%3A05%3A20.5870395Z'\\\"\",\"tags\":{\"MABUsed\":\" + Yes\",\"DeleteBy\":\"05-2022\",\"Owner\":\"sarath\",\"Purpose\":\" Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRSVault\",\"etag\":\"W/\\\"datetime'2020-12-18T07%3A21%3A25.446244Z'\\\"\",\"tags\":{\"Mab + Used\":\"yes\",\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akneema-vault-new\",\"etag\":\"W/\\\"datetime'2020-10-21T05%3A41%3A56.9405248Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"aseecyvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A42.302062Z'\\\"\",\"tags\":{\"Owner\":\"nilsha\",\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amchandnTest1s\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.8223319Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A03.0272582Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault528\",\"etag\":\"W/\\\"datetime'2020-06-24T05%3A42%3A37.2089559Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseSdKTesting\",\"etag\":\"W/\\\"datetime'2020-12-15T14%3A32%3A44.5929452Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"MAB + Used\":\"Yes\",\"Delete By\":\"01-2021\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a6b049a5-e7c2-42c8-913c-01b5423def92\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2020-08-18T08%3A16%3A08.528991Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"anagra-seacanary-vault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.6560655Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"geetavaultbanner3\",\"etag\":\"W/\\\"datetime'2020-07-03T16%3A10%3A09.9176441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"Anjor-RSVSeaCan\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.8370807Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-02-16T19%3A11%3A01.8675856Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault2\",\"etag\":\"W/\\\"datetime'2019-07-15T10%3A34%3A19.1582447Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gaallatest2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A13.5673429Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CasabaVault3827\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.7412548Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoobanner8vault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A47%3A24.3687092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault576\",\"etag\":\"W/\\\"datetime'2019-10-04T16%3A20%3A10.9839701Z'\\\"\",\"tags\":{\"Purpose\":\" + Testing\",\"Owner\":\"chgonugu\",\"MAB Used\":\" Yes\",\"DeleteBy\":\"12-2019\",\"Delete + By\":\"12-2019\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault941\",\"etag\":\"W/\\\"datetime'2019-11-04T12%3A08%3A34.6837353Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-16116dddddddddddddddddddddddddddd\",\"etag\":\"W/\\\"datetime'2018-02-23T09%3A54%3A52.8285034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaultyjoinjawcvn\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.3813542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaulttw65usomtlg\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A51.7677711Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.1961785Z'\\\"\",\"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\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault76igf7p7gcj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.9138606Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault5kfc7hegvxj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A53.0009434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CanaryVenusEndtoEnd\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.7700177Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGCanary/providers/Microsoft.RecoveryServices/vaults/CanaryVenusEndtoEnd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"DinosVaultUR1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A19.949397Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.RecoveryServices/vaults/DinosVaultUR1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo8\",\"etag\":\"W/\\\"datetime'2020-07-14T06%3A14%3A12.5377965Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A14%3A35.1228473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovaultbanner\",\"etag\":\"W/\\\"datetime'2020-07-05T12%3A22%3A20.1815359Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovaultbanner\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault787\",\"etag\":\"W/\\\"datetime'2020-07-09T11%3A58%3A38.7939306Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault787\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault851\",\"etag\":\"W/\\\"datetime'2020-07-03T14%3A39%3A01.0850308Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault851\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"jakavetSEAvault\",\"etag\":\"W/\\\"datetime'2018-07-18T11%3A03%3A48.0478445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetSEAvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NilayVault\",\"etag\":\"W/\\\"datetime'2020-02-10T18%3A58%3A58.3339904Z'\\\"\",\"tags\":{\"MAB + Used\":\"\_Yes\",\"Owner\":\"nilsha\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"nilshaafstestvault\",\"etag\":\"W/\\\"datetime'2020-02-06T04%3A15%3A27.8703969Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilshaafstest/providers/Microsoft.RecoveryServices/vaults/nilshaafstestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NirajKCanVault1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A24.9934424Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NirajKCanVault2/providers/Microsoft.RecoveryServices/vaults/NirajKCanVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestFSRSV1bca8f8e\",\"etag\":\"W/\\\"datetime'2019-04-03T12%3A20%3A24.6265273Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG1bca8f8e/providers/Microsoft.RecoveryServices/vaults/PSTestFSRSV1bca8f8e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"pstestwlRSV1bca8\",\"etag\":\"W/\\\"datetime'2019-10-30T10%3A18%3A53.8483283Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"rajkstestcm01\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A27.3524558Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajkstestcm01/providers/Microsoft.RecoveryServices/vaults/rajkstestcm01\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sam-rv-sea-can\",\"etag\":\"W/\\\"datetime'2018-02-28T10%3A01%3A22.1790616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.RecoveryServices/vaults/sam-rv-sea-can\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault\",\"etag\":\"W/\\\"datetime'2020-12-09T08%3A59%3A05.1553594Z'\\\"\",\"tags\":{\"c\":\"d\",\"a\":\"b\",\"e\":\"f\",\"g\":\"h\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0796693d-c630-49a3-813b-3715e183591d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault2\",\"etag\":\"W/\\\"datetime'2020-10-09T10%3A00%3A34.8337394Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"MercuryCertRolloverRSVSeaCan\",\"etag\":\"W/\\\"datetime'2018-10-12T07%3A49%3A47.2265436Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/seacanrg/providers/Microsoft.RecoveryServices/vaults/MercuryCertRolloverRSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A29.3044784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A31.4374909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shrja-vault\",\"etag\":\"W/\\\"datetime'2020-07-06T11%3A36%3A46.4737448Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.RecoveryServices/vaults/shrja-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shswain-rsvault-donotuse\",\"etag\":\"W/\\\"datetime'2020-04-16T11%3A29%3A00.0740566Z'\\\"\",\"tags\":{\"Owner\":\"shswai\",\"Purpose\":\"Dev + Testing\",\"DeleteBy\":\"12-2022\",\"MAB Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newgeetvault\",\"etag\":\"W/\\\"datetime'2020-12-09T06%3A14%3A11.3615575Z'\\\"\",\"tags\":{\"AutoShutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"MABUsed\":\"Yes\",\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"suchandr-test-vault\",\"etag\":\"W/\\\"datetime'2018-12-18T09%3A31%3A05.8772232Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"ContosoVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A34.1345159Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhRG/providers/Microsoft.RecoveryServices/vaults/ContosoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-sea-RS-1606\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A40.9305725Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-sea-RS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}]}" + headers: + cache-control: + - no-cache + content-length: + - '37548' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 16 Jan 2021 08:03:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + - d8709a2e-caad-41f7-94cf-ba1305c81f9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2020-10-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/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtvm1/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"asebvtvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:10:14.4183469Z","protectedItemDataId":"263883848880839","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:10:25.889668Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2019' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:03: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/sarathwusvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/sarathwcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/vault146/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-ccy/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"akneema-hana-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:30:58.3850322Z","protectedItemDataId":"1366978781","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;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/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:31:04.1075006Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-sql-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","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-01-16T03:37:15.4034514Z","protectedItemDataId":"1527441871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:37:19.0000538Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-16T03:31:11.8508231Z","protectedItemDataId":"119104222","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T03:31:39.2850408Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '5878' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupProtectedItems?api-version=2020-10-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/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","name":"VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:42:06.7703986Z","protectedItemDataId":"35184458305137","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1958' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupProtectedItems?api-version=2020-10-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/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3/protectedItems/VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","name":"VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM0e34d3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:46:31.8022704Z","protectedItemDataId":"140738989571218","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2023' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?api-version=2020-10-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/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM545483","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","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-01-15T21:34:06.6120994Z","protectedItemDataId":"70370838940336","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:34:11.2719107Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1817' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupProtectedItems?api-version=2020-10-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/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM664243","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","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-01-15T21:06:44.4996797Z","protectedItemDataId":"140739447045620","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:06:56.7157962Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1818' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupProtectedItems?api-version=2020-10-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/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanaselrs;akkanaselrstest/protectedItems/VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","name":"VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","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-01-15T17:01:27.6629072Z","protectedItemDataId":"52778032964849","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanaselrs;akkanaselrstest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T17:01:30.7079738Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1834' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm-new/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-15T15:40:22.3288383Z","protectedItemDataId":"52777015471742","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema;akneema-hana-vm-new","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T15:37:06.7393487Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2294' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupProtectedItems?api-version=2020-10-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/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-test2/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-test2","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-test2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sarath-test2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1864336160","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-test2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1418' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupProtectedItems?api-version=2020-10-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/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;testbackupvm/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","name":"VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400138,"title":"UserErrorSubnetNotFoundV2","message":"Subnet + doesn''t exist.","recommendations":["Please make sure that subnet exists or + select a different subnet."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}]}},"friendlyName":"TestBackupVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-11-24T07:12:36.4187251Z","protectedItemDataId":"1121317794","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;testbackupvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-10-29T07:05:21.832114Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2490' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2020-10-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/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","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-01-15T18:10:14.8103493Z","protectedItemDataId":"17593156659350","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T18:10:18.4942788Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupProtectedItems?api-version=2020-10-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/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","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-01-15T18:02:11.2205131Z","protectedItemDataId":"2124204057","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupPolicies/testgeeta","policyName":"testgeeta","lastRecoveryPoint":"2021-01-15T18:02:16.8403179Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1808' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupProtectedItems?api-version=2020-10-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/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testvmsqlchg/protectedItems/VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","name":"VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmsqlchg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","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-01-15T22:09:15.3937947Z","protectedItemDataId":"17592392492659","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;chandrikarg;testvmsqlchg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T22:09:22.2357574Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1797' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupProtectedItems?api-version=2020-10-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.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs/protectedItems/VM;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","name":"VM;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmgtwfs","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2056' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupProtectedItems?api-version=2020-10-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.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n/protectedItems/VM;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VM;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmnpb2n","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"227941807","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1958' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 check-vm + Connection: + - keep-alive + ParameterSetName: + - --vm-id + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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":"52777048519087","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1963' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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":"52777048519087","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1963' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '135' + 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": "", "protectedItemType": "Microsoft.Compute/virtualMachines", "protectionState": + "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '356' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 08:04: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-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 disable + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:04: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"InProgress","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/38560af9-b707-40ba-8ed8-47387a0b27f5?api-version=2020-10-01 + response: + body: + string: '{"id":"38560af9-b707-40ba-8ed8-47387a0b27f5","name":"38560af9-b707-40ba-8ed8-47387a0b27f5","status":"Succeeded","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"2021-01-16T08:04:54.0894285Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"63bcbbc1-4721-4b3a-82d2-ad01ad7d39bb"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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: + - '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 --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/63bcbbc1-4721-4b3a-82d2-ad01ad7d39bb?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/63bcbbc1-4721-4b3a-82d2-ad01ad7d39bb","name":"63bcbbc1-4721-4b3a-82d2-ad01ad7d39bb","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10.9231241S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-01-16T08:04:54.0894285Z","endTime":"2021-01-16T08:05:05.0125526Z","activityId":"8390afc2-57d1-11eb-9177-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '953' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 08:05: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/operationResults/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-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: - - '144' + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1980,32 +10372,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3c34362a-1089-46b7-bdb8-2456e0124c39?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777048519087","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":"","policyName":""}}]}' headers: cache-control: - no-cache + content-length: + - '1718' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:38:21 GMT + - Sat, 16 Jan 2021 08:05: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: @@ -2013,8 +10415,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2023,30 +10425,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej/protectableItems/vm;iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej","name":"iaasvmcontainerv2;clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l;clitest-vmkwlej","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l/providers/Microsoft.Compute/virtualMachines/clitest-vmkwlej","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguckm6cojpfton5k474jzbk3iuas2ymvjxcddwm6pucmhjhr5tc77ndulrniljwr2l","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmkwlej","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"}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"52777048519087","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":"","policyName":""}}]}' headers: cache-control: - no-cache content-length: - - '2531' + - '1718' content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:23 GMT + - Sat, 16 Jan 2021 08:05:07 GMT expires: - '-1' pragma: @@ -2062,62 +10465,59 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' 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"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive Content-Length: - - '556' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:38:26 GMT + - Sat, 16 Jan 2021 08:05: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -2131,21 +10531,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2154,7 +10555,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:27 GMT + - Sat, 16 Jan 2021 08:05:08 GMT expires: - '-1' pragma: @@ -2184,21 +10585,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2207,7 +10609,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:29 GMT + - Sat, 16 Jan 2021 08:05:09 GMT expires: - '-1' pragma: @@ -2237,21 +10639,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2260,7 +10663,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:30 GMT + - Sat, 16 Jan 2021 08:05:10 GMT expires: - '-1' pragma: @@ -2290,21 +10693,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2313,7 +10717,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:32 GMT + - Sat, 16 Jan 2021 08:05:11 GMT expires: - '-1' pragma: @@ -2343,21 +10747,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2366,7 +10771,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:33 GMT + - Sat, 16 Jan 2021 08:05:13 GMT expires: - '-1' pragma: @@ -2396,21 +10801,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2419,7 +10825,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:35 GMT + - Sat, 16 Jan 2021 08:05:15 GMT expires: - '-1' pragma: @@ -2449,21 +10855,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2472,7 +10879,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:36 GMT + - Sat, 16 Jan 2021 08:05:16 GMT expires: - '-1' pragma: @@ -2502,21 +10909,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2525,7 +10933,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:38 GMT + - Sat, 16 Jan 2021 08:05:17 GMT expires: - '-1' pragma: @@ -2555,21 +10963,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2578,7 +10987,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:39 GMT + - Sat, 16 Jan 2021 08:05:18 GMT expires: - '-1' pragma: @@ -2608,21 +11017,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2631,7 +11041,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:40 GMT + - Sat, 16 Jan 2021 08:05:19 GMT expires: - '-1' pragma: @@ -2661,21 +11071,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2684,7 +11095,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:42 GMT + - Sat, 16 Jan 2021 08:05:20 GMT expires: - '-1' pragma: @@ -2714,21 +11125,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2737,7 +11149,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:43 GMT + - Sat, 16 Jan 2021 08:05:22 GMT expires: - '-1' pragma: @@ -2767,21 +11179,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2790,7 +11203,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:45 GMT + - Sat, 16 Jan 2021 08:05:23 GMT expires: - '-1' pragma: @@ -2820,21 +11233,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2843,7 +11257,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:46 GMT + - Sat, 16 Jan 2021 08:05:25 GMT expires: - '-1' pragma: @@ -2873,21 +11287,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2896,7 +11311,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:48 GMT + - Sat, 16 Jan 2021 08:05:26 GMT expires: - '-1' pragma: @@ -2926,21 +11341,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2949,7 +11365,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:49 GMT + - Sat, 16 Jan 2021 08:05:27 GMT expires: - '-1' pragma: @@ -2979,21 +11395,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3002,7 +11419,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:51 GMT + - Sat, 16 Jan 2021 08:05:29 GMT expires: - '-1' pragma: @@ -3032,21 +11449,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3055,7 +11473,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:52 GMT + - Sat, 16 Jan 2021 08:05:30 GMT expires: - '-1' pragma: @@ -3085,21 +11503,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3108,7 +11527,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:54 GMT + - Sat, 16 Jan 2021 08:05:31 GMT expires: - '-1' pragma: @@ -3138,21 +11557,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3161,7 +11581,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:56 GMT + - Sat, 16 Jan 2021 08:05:32 GMT expires: - '-1' pragma: @@ -3191,21 +11611,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3214,7 +11635,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:57 GMT + - Sat, 16 Jan 2021 08:05:33 GMT expires: - '-1' pragma: @@ -3244,21 +11665,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3267,7 +11689,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:38:59 GMT + - Sat, 16 Jan 2021 08:05:34 GMT expires: - '-1' pragma: @@ -3297,21 +11719,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3320,7 +11743,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:00 GMT + - Sat, 16 Jan 2021 08:05:36 GMT expires: - '-1' pragma: @@ -3350,21 +11773,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3373,7 +11797,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:02 GMT + - Sat, 16 Jan 2021 08:05:37 GMT expires: - '-1' pragma: @@ -3403,21 +11827,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3426,7 +11851,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:03 GMT + - Sat, 16 Jan 2021 08:05:38 GMT expires: - '-1' pragma: @@ -3456,21 +11881,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3479,7 +11905,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:05 GMT + - Sat, 16 Jan 2021 08:05:39 GMT expires: - '-1' pragma: @@ -3509,21 +11935,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3532,7 +11959,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:06 GMT + - Sat, 16 Jan 2021 08:05:41 GMT expires: - '-1' pragma: @@ -3562,21 +11989,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3585,7 +12013,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:08 GMT + - Sat, 16 Jan 2021 08:05:42 GMT expires: - '-1' pragma: @@ -3615,21 +12043,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3638,7 +12067,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:09 GMT + - Sat, 16 Jan 2021 08:05:43 GMT expires: - '-1' pragma: @@ -3668,21 +12097,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3691,7 +12121,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:11 GMT + - Sat, 16 Jan 2021 08:05:44 GMT expires: - '-1' pragma: @@ -3721,21 +12151,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3744,7 +12175,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:12 GMT + - Sat, 16 Jan 2021 08:05:46 GMT expires: - '-1' pragma: @@ -3774,21 +12205,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3797,7 +12229,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:14 GMT + - Sat, 16 Jan 2021 08:05:47 GMT expires: - '-1' pragma: @@ -3827,21 +12259,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3850,7 +12283,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:15 GMT + - Sat, 16 Jan 2021 08:05:48 GMT expires: - '-1' pragma: @@ -3880,21 +12313,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3903,7 +12337,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:17 GMT + - Sat, 16 Jan 2021 08:05:50 GMT expires: - '-1' pragma: @@ -3933,21 +12367,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3956,7 +12391,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:18 GMT + - Sat, 16 Jan 2021 08:05:51 GMT expires: - '-1' pragma: @@ -3986,21 +12421,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4009,7 +12445,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:20 GMT + - Sat, 16 Jan 2021 08:05:52 GMT expires: - '-1' pragma: @@ -4039,21 +12475,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4062,7 +12499,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:21 GMT + - Sat, 16 Jan 2021 08:05:53 GMT expires: - '-1' pragma: @@ -4092,21 +12529,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4115,7 +12553,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:23 GMT + - Sat, 16 Jan 2021 08:05:55 GMT expires: - '-1' pragma: @@ -4145,21 +12583,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4168,7 +12607,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:24 GMT + - Sat, 16 Jan 2021 08:05:56 GMT expires: - '-1' pragma: @@ -4198,21 +12637,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4221,7 +12661,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:27 GMT + - Sat, 16 Jan 2021 08:05:57 GMT expires: - '-1' pragma: @@ -4251,21 +12691,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4274,7 +12715,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:28 GMT + - Sat, 16 Jan 2021 08:05:58 GMT expires: - '-1' pragma: @@ -4304,21 +12745,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4327,7 +12769,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:30 GMT + - Sat, 16 Jan 2021 08:06:00 GMT expires: - '-1' pragma: @@ -4357,21 +12799,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4380,7 +12823,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:31 GMT + - Sat, 16 Jan 2021 08:06:01 GMT expires: - '-1' pragma: @@ -4410,21 +12853,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4433,7 +12877,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:33 GMT + - Sat, 16 Jan 2021 08:06:02 GMT expires: - '-1' pragma: @@ -4463,21 +12907,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4486,7 +12931,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:34 GMT + - Sat, 16 Jan 2021 08:06:04 GMT expires: - '-1' pragma: @@ -4516,21 +12961,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4539,7 +12985,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:36 GMT + - Sat, 16 Jan 2021 08:06:05 GMT expires: - '-1' pragma: @@ -4569,21 +13015,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4592,7 +13039,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:37 GMT + - Sat, 16 Jan 2021 08:06:06 GMT expires: - '-1' pragma: @@ -4622,21 +13069,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4645,7 +13093,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:39 GMT + - Sat, 16 Jan 2021 08:06:07 GMT expires: - '-1' pragma: @@ -4675,21 +13123,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4698,7 +13147,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:40 GMT + - Sat, 16 Jan 2021 08:06:09 GMT expires: - '-1' pragma: @@ -4728,21 +13177,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4751,7 +13201,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:42 GMT + - Sat, 16 Jan 2021 08:06:10 GMT expires: - '-1' pragma: @@ -4781,21 +13231,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4804,7 +13255,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:44 GMT + - Sat, 16 Jan 2021 08:06:11 GMT expires: - '-1' pragma: @@ -4834,21 +13285,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4857,7 +13309,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:45 GMT + - Sat, 16 Jan 2021 08:06:12 GMT expires: - '-1' pragma: @@ -4887,21 +13339,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4910,7 +13363,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:47 GMT + - Sat, 16 Jan 2021 08:06:14 GMT expires: - '-1' pragma: @@ -4940,21 +13393,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4963,7 +13417,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:48 GMT + - Sat, 16 Jan 2021 08:06:15 GMT expires: - '-1' pragma: @@ -4993,21 +13447,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5016,7 +13471,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:50 GMT + - Sat, 16 Jan 2021 08:06:16 GMT expires: - '-1' pragma: @@ -5046,21 +13501,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5069,7 +13525,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:51 GMT + - Sat, 16 Jan 2021 08:06:17 GMT expires: - '-1' pragma: @@ -5099,21 +13555,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5122,7 +13579,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:53 GMT + - Sat, 16 Jan 2021 08:06:19 GMT expires: - '-1' pragma: @@ -5152,21 +13609,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5175,7 +13633,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:54 GMT + - Sat, 16 Jan 2021 08:06:20 GMT expires: - '-1' pragma: @@ -5205,21 +13663,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"InProgress","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5228,7 +13687,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:56 GMT + - Sat, 16 Jan 2021 08:06:21 GMT expires: - '-1' pragma: @@ -5258,30 +13717,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0322f3dd-1e19-4077-9021-ab814519a641?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"0322f3dd-1e19-4077-9021-ab814519a641","name":"0322f3dd-1e19-4077-9021-ab814519a641","status":"Succeeded","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"2020-12-18T10:38:25.9296402Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"50da19be-f996-486b-b89f-9ef7f366468f"}}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:57 GMT + - Sat, 16 Jan 2021 08:06:22 GMT expires: - '-1' pragma: @@ -5311,38 +13771,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50da19be-f996-486b-b89f-9ef7f366468f?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50da19be-f996-486b-b89f-9ef7f366468f","name":"50da19be-f996-486b-b89f-9ef7f366468f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7093705S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T10:38:25.9296402Z","endTime":"2020-12-18T10:39:57.6390107Z","activityId":"1a6ebbad-411d-11eb-b470-c03eba45757e"}}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:39:59 GMT + - Sat, 16 Jan 2021 08:06: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: @@ -5352,7 +13811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '89' x-powered-by: - ASP.NET status: @@ -5366,30 +13825,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup vault show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -n --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '539' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:00 GMT + - Sat, 16 Jan 2021 08:06:25 GMT expires: - '-1' pragma: @@ -5404,6 +13864,10 @@ interactions: - 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 @@ -5415,44 +13879,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[{"location":"westus","name":"Issue133VaultTwo","etag":"W/\"datetime''2020-10-08T21%3A11%3A10.2885322Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bd258003-d032-436b-91a3-d246c6c586d9","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133Vault","etag":"W/\"datetime''2020-10-07T15%3A01%3A02.6385376Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"db162643-23c2-45ba-aff1-d1b429353bda","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133VaultP2","etag":"W/\"datetime''2020-10-07T15%3A06%3A10.4024415Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6daa354b-b8f0-4d51-8b93-06c1329c758e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"VaultTwo132","etag":"W/\"datetime''2020-10-08T23%3A19%3A21.36034Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d2011342-6a45-44b7-b263-4cbcf849c042","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"what-if-dania-vault","etag":"W/\"datetime''2020-08-18T15%3A28%3A15.8086333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault3cpmb5svk72","etag":"W/\"datetime''2020-12-18T08%3A53%3A23.3142838Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzdobuyl7nxx","etag":"W/\"datetime''2020-12-18T08%3A59%3A23.2409251Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultow7ptzv7op5","etag":"W/\"datetime''2020-12-18T07%3A08%3A56.1522303Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '5008' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 10:40:01 GMT + - Sat, 16 Jan 2021 08:06: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-original-request-ids: - - 9e51ba82-0023-4992-bb96-19c52bdf104c - - 9e51ba82-0023-4992-bb96-19c52bdf104c - - 9e51ba82-0023-4992-bb96-19c52bdf104c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -5464,30 +13933,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:03 GMT + - Sat, 16 Jan 2021 08:06:28 GMT expires: - '-1' pragma: @@ -5503,7 +13973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '86' x-powered-by: - ASP.NET status: @@ -5517,30 +13987,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:03 GMT + - Sat, 16 Jan 2021 08:06:29 GMT expires: - '-1' pragma: @@ -5556,7 +14027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '85' x-powered-by: - ASP.NET status: @@ -5570,30 +14041,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:04 GMT + - Sat, 16 Jan 2021 08:06:30 GMT expires: - '-1' pragma: @@ -5609,7 +14081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '84' x-powered-by: - ASP.NET status: @@ -5623,30 +14095,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:05 GMT + - Sat, 16 Jan 2021 08:06:31 GMT expires: - '-1' pragma: @@ -5662,7 +14135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '83' x-powered-by: - ASP.NET status: @@ -5676,32 +14149,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;template-specs-dania/protectedItems/VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","name":"VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"Template-Specs-Dania","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","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":"2020-08-28T01:23:18.0375903Z","protectedItemDataId":"932350677515017022","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;template-specs-dania","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:23:20.9520834Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;windowswhatif/protectedItems/VM;iaasvmcontainerv2;templatespecscli;windowswhatif","name":"VM;iaasvmcontainerv2;templatespecscli;windowswhatif","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"WindowsWhatIf","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","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":"2020-08-28T01:18:12.7878829Z","protectedItemDataId":"932350676653089390","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;windowswhatif","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:18:15.7642592Z"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3478' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:05 GMT + - Sat, 16 Jan 2021 08:06:32 GMT expires: - '-1' pragma: @@ -5717,7 +14189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '82' x-powered-by: - ASP.NET status: @@ -5731,30 +14203,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmapgzg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:29.9122014Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:18:21.6597686"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmncbud","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198987865464","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:48.8256655Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:18:40.5732327"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3725' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:07 GMT + - Sat, 16 Jan 2021 08:06:33 GMT expires: - '-1' pragma: @@ -5770,7 +14243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '81' x-powered-by: - ASP.NET status: @@ -5784,32 +14257,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp/protectedItems/VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","name":"VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job - is cancelled.","recommendations":[]}]}},"friendlyName":"clitest-vm73ggp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-18T09:02:51.1460143Z","deferredDeleteTimeInUTC":"2020-12-18T10:26:12.4068784Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:46:02.1922229"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2453' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:09 GMT + - Sat, 16 Jan 2021 08:06:35 GMT expires: - '-1' pragma: @@ -5825,7 +14297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '80' x-powered-by: - ASP.NET status: @@ -5839,30 +14311,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmoo3ce","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605737359848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:13:52.6202294Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:33:41.6076782"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmpuclh","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:14:11.4529936Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:34:00.4404424"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '3725' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:10 GMT + - Sat, 16 Jan 2021 08:06:36 GMT expires: - '-1' pragma: @@ -5878,7 +14351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '79' x-powered-by: - ASP.NET status: @@ -5892,30 +14365,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection check-vm + - backup protection disable Connection: - keep-alive ParameterSetName: - - --vm-id + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-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","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":"2260894975019714663","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"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:11 GMT + - Sat, 16 Jan 2021 08:06:38 GMT expires: - '-1' pragma: @@ -5931,7 +14405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '78' x-powered-by: - ASP.NET status: @@ -5949,26 +14423,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-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","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":"2260894975019714663","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"}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:12 GMT + - Sat, 16 Jan 2021 08:06:39 GMT expires: - '-1' pragma: @@ -5984,16 +14459,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '77' 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": "", "protectedItemType": "Microsoft.Compute/virtualMachines", "protectionState": - "ProtectionStopped"}}' + body: null headers: Accept: - application/json @@ -6003,48 +14476,49 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '356' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:40:13 GMT + - Sat, 16 Jan 2021 08:06: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: + - '76' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6057,17 +14531,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6076,7 +14551,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:14 GMT + - Sat, 16 Jan 2021 08:06:41 GMT expires: - '-1' pragma: @@ -6092,7 +14567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '75' x-powered-by: - ASP.NET status: @@ -6110,17 +14585,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6129,7 +14605,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:16 GMT + - Sat, 16 Jan 2021 08:06:42 GMT expires: - '-1' pragma: @@ -6145,7 +14621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '74' x-powered-by: - ASP.NET status: @@ -6163,17 +14639,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6182,7 +14659,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:18 GMT + - Sat, 16 Jan 2021 08:06:44 GMT expires: - '-1' pragma: @@ -6198,7 +14675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '73' x-powered-by: - ASP.NET status: @@ -6216,17 +14693,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6235,7 +14713,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:19 GMT + - Sat, 16 Jan 2021 08:06:45 GMT expires: - '-1' pragma: @@ -6251,7 +14729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '72' x-powered-by: - ASP.NET status: @@ -6269,17 +14747,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6288,7 +14767,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:21 GMT + - Sat, 16 Jan 2021 08:06:46 GMT expires: - '-1' pragma: @@ -6304,7 +14783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '71' x-powered-by: - ASP.NET status: @@ -6322,17 +14801,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6341,7 +14821,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:22 GMT + - Sat, 16 Jan 2021 08:06:47 GMT expires: - '-1' pragma: @@ -6357,7 +14837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '70' x-powered-by: - ASP.NET status: @@ -6375,17 +14855,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"InProgress","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6394,7 +14875,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:25 GMT + - Sat, 16 Jan 2021 08:06:48 GMT expires: - '-1' pragma: @@ -6410,7 +14891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '69' x-powered-by: - ASP.NET status: @@ -6428,26 +14909,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/60486d78-65a0-44b4-a843-063ae484b52f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"60486d78-65a0-44b4-a843-063ae484b52f","name":"60486d78-65a0-44b4-a843-063ae484b52f","status":"Succeeded","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"2020-12-18T10:40:13.5629315Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"310b4e33-26d5-4e9b-b3dd-e7bdae6cb2ca"}}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:26 GMT + - Sat, 16 Jan 2021 08:06:50 GMT expires: - '-1' pragma: @@ -6463,7 +14945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '68' x-powered-by: - ASP.NET status: @@ -6481,34 +14963,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --yes + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/310b4e33-26d5-4e9b-b3dd-e7bdae6cb2ca?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/310b4e33-26d5-4e9b-b3dd-e7bdae6cb2ca","name":"310b4e33-26d5-4e9b-b3dd-e7bdae6cb2ca","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.525457S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2020-12-18T10:40:13.5629315Z","endTime":"2020-12-18T10:40:25.0883885Z","activityId":"67b94d18-411d-11eb-b34d-c03eba45757e"}}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '952' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:27 GMT + - Sat, 16 Jan 2021 08:06: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: @@ -6518,7 +14999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '67' x-powered-by: - ASP.NET status: @@ -6532,30 +15013,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -n + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-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","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260894975019714663","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":"","policyName":""}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1723' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:30 GMT + - Sat, 16 Jan 2021 08:06:52 GMT expires: - '-1' pragma: @@ -6571,7 +15053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '66' x-powered-by: - ASP.NET status: @@ -6592,24 +15074,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-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","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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260894975019714663","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":"","policyName":""}}]}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1723' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:32 GMT + - Sat, 16 Jan 2021 08:06:54 GMT expires: - '-1' pragma: @@ -6625,7 +15107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '65' x-powered-by: - ASP.NET status: @@ -6642,47 +15124,49 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:40:34 GMT + - Sat, 16 Jan 2021 08:06:55 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6698,15 +15182,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6715,7 +15199,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:36 GMT + - Sat, 16 Jan 2021 08:06:56 GMT expires: - '-1' pragma: @@ -6731,7 +15215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '63' x-powered-by: - ASP.NET status: @@ -6752,15 +15236,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6769,7 +15253,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:38 GMT + - Sat, 16 Jan 2021 08:06:57 GMT expires: - '-1' pragma: @@ -6785,7 +15269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '62' x-powered-by: - ASP.NET status: @@ -6806,15 +15290,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"InProgress","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6823,7 +15307,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:39 GMT + - Sat, 16 Jan 2021 08:06:58 GMT expires: - '-1' pragma: @@ -6839,7 +15323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '61' x-powered-by: - ASP.NET status: @@ -6860,24 +15344,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/155ac894-8b51-4826-a8f7-6b333ab6d910?api-version=2020-10-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"155ac894-8b51-4826-a8f7-6b333ab6d910","name":"155ac894-8b51-4826-a8f7-6b333ab6d910","status":"Succeeded","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"2021-01-16T08:05:07.9757987Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5264d55f-1599-44ee-b869-8afbf3820175"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:41 GMT + - Sat, 16 Jan 2021 08:07:00 GMT expires: - '-1' pragma: @@ -6893,7 +15377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '60' x-powered-by: - ASP.NET status: @@ -6914,30 +15398,32 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5264d55f-1599-44ee-b869-8afbf3820175?api-version=2020-10-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5264d55f-1599-44ee-b869-8afbf3820175","name":"5264d55f-1599-44ee-b869-8afbf3820175","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.9579718S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-16T08:05:07.9757987Z","endTime":"2021-01-16T08:06:59.9337705Z","activityId":"8bb99181-57d1-11eb-9635-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '973' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:43 GMT + - Sat, 16 Jan 2021 08:07: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: @@ -6947,7 +15433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -6961,31 +15447,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container list Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --backup-management-type -v -g User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:44 GMT + - Sat, 16 Jan 2021 08:07:00 GMT expires: - '-1' pragma: @@ -7001,7 +15486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '148' x-powered-by: - ASP.NET status: @@ -7015,49 +15500,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: "{\"value\":[{\"location\":\"westus\",\"name\":\"sdfjsldkj\",\"etag\":\"W/\\\"datetime'2017-12-11T09%3A43%3A03.5196627Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"jakavetVault\",\"etag\":\"W/\\\"datetime'2018-01-11T11%3A42%3A45.0018104Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"JeremyVault\",\"etag\":\"W/\\\"datetime'2018-06-19T09%3A08%3A25.1865377Z'\\\"\",\"tags\":{\"tagtest\":\"wow\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"PSTestRSVcaf8ab5e\",\"etag\":\"W/\\\"datetime'2019-08-20T05%3A03%3A40.2572426Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Purpose\":\"CLI\",\"Owner\":\"sarath\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sarathwusvault\",\"etag\":\"W/\\\"datetime'2020-01-27T06%3A24%3A46.2941609Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwusvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sdkvault\",\"etag\":\"W/\\\"datetime'2019-12-12T10%3A27%3A50.3495993Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"sisi-RSV-29-6\",\"etag\":\"W/\\\"datetime'2019-12-16T08%3A43%3A12.6517378Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westus\",\"name\":\"vsarg-RS-WUS-1606\",\"etag\":\"W/\\\"datetime'2017-02-07T18%3A58%3A29.852034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"akkanaseCanaryTestVault\",\"etag\":\"W/\\\"datetime'2020-04-17T07%3A06%3A03.2954641Z'\\\"\",\"tags\":{\"DeleteBy\":\"01-2025\",\"Owner\":\"akkanase\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus\",\"name\":\"hiagaTest-vault\",\"etag\":\"W/\\\"datetime'2020-05-26T09%3A16%3A21.6796175Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshcVault\",\"etag\":\"W/\\\"datetime'2018-09-06T05%3A48%3A33.9799251Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"aruvault1\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.158366Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southindia\",\"name\":\"riteshc1\",\"etag\":\"W/\\\"datetime'2018-06-21T06%3A30%3A51.0380744Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"canadavault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A44.5324269Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"canadacentral\",\"name\":\"SqlBackupDemoVault\",\"etag\":\"W/\\\"datetime'2019-03-26T16%3A33%3A24.2652857Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"sarathwcus\",\"etag\":\"W/\\\"datetime'2020-06-02T09%3A42%3A26.1365683Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"westcentralus\",\"name\":\"suchandr-test-rsv-wcus\",\"etag\":\"W/\\\"datetime'2018-12-18T12%3A01%3A19.7479465Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"uksouth\",\"name\":\"hanauks\",\"etag\":\"W/\\\"datetime'2020-01-27T12%3A24%3A14.6254633Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"germanywestcentral\",\"name\":\"vault146\",\"etag\":\"W/\\\"datetime'2020-07-14T09%3A01%3A58.4314866Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault146\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"akneema-vault-ccy\",\"etag\":\"W/\\\"datetime'2020-11-06T17%3A46%3A41.0750761Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"hiagaSrcVault\",\"etag\":\"W/\\\"datetime'2020-12-15T03%3A04%3A07.0133927Z'\\\"\",\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV0e34df9d\",\"etag\":\"W/\\\"datetime'2020-08-26T05%3A47%3A47.270814Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV54548c5f\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A35%3A53.0022191Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"PSTestRSV66424fe3\",\"etag\":\"W/\\\"datetime'2020-08-26T11%3A19%3A16.4073513Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"centraluseuap\",\"name\":\"shracvaultcredtest\",\"etag\":\"W/\\\"datetime'2020-01-09T09%3A07%3A40.7685275Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"softdletevault\",\"etag\":\"W/\\\"datetime'2020-05-12T11%3A05%3A20.5870395Z'\\\"\",\"tags\":{\"MABUsed\":\" + Yes\",\"DeleteBy\":\"05-2022\",\"Owner\":\"sarath\",\"Purpose\":\" Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akkanaseLRSVault\",\"etag\":\"W/\\\"datetime'2020-12-18T07%3A21%3A25.446244Z'\\\"\",\"tags\":{\"Mab + Used\":\"yes\",\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"akneema-vault-new\",\"etag\":\"W/\\\"datetime'2020-10-21T05%3A41%3A56.9405248Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"eastus2euap\",\"name\":\"aseecyvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A42.302062Z'\\\"\",\"tags\":{\"Owner\":\"nilsha\",\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"amchandnTest1s\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.8223319Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newvault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A03.0272582Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault528\",\"etag\":\"W/\\\"datetime'2020-06-24T05%3A42%3A37.2089559Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akkanaseSdKTesting\",\"etag\":\"W/\\\"datetime'2020-12-15T14%3A32%3A44.5929452Z'\\\"\",\"tags\":{\"Purpose\":\"Testing\",\"Owner\":\"akkanase\",\"MAB + Used\":\"Yes\",\"Delete By\":\"01-2021\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a6b049a5-e7c2-42c8-913c-01b5423def92\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"akneema-vault\",\"etag\":\"W/\\\"datetime'2020-08-18T08%3A16%3A08.528991Z'\\\"\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"Purpose\":\"Testing\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"anagra-seacanary-vault\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A43.6560655Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"geetavaultbanner3\",\"etag\":\"W/\\\"datetime'2020-07-03T16%3A10%3A09.9176441Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"Anjor-RSVSeaCan\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.8370807Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault-donotdelete\",\"etag\":\"W/\\\"datetime'2019-02-16T19%3A11%3A01.8675856Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\",\"Owner\":\"nilsha\",\"Purpose\":\"BVT\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"asebvtvault2\",\"etag\":\"W/\\\"datetime'2019-07-15T10%3A34%3A19.1582447Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gaallatest2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A13.5673429Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CasabaVault3827\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A41.7412548Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoobanner8vault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A47%3A24.3687092Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault576\",\"etag\":\"W/\\\"datetime'2019-10-04T16%3A20%3A10.9839701Z'\\\"\",\"tags\":{\"Purpose\":\" + Testing\",\"Owner\":\"chgonugu\",\"MAB Used\":\" Yes\",\"DeleteBy\":\"12-2019\",\"Delete + By\":\"12-2019\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault941\",\"etag\":\"W/\\\"datetime'2019-11-04T12%3A08%3A34.6837353Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-16116dddddddddddddddddddddddddddd\",\"etag\":\"W/\\\"datetime'2018-02-23T09%3A54%3A52.8285034Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaultyjoinjawcvn\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.3813542Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vaulttw65usomtlg\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A51.7677711Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault000002\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.1961785Z'\\\"\",\"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\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault76igf7p7gcj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A52.9138606Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"clitest-vault5kfc7hegvxj\",\"etag\":\"W/\\\"datetime'2021-01-16T07%3A58%3A53.0009434Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"CanaryVenusEndtoEnd\",\"etag\":\"W/\\\"datetime'2019-07-03T12%3A14%3A46.7700177Z'\\\"\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGCanary/providers/Microsoft.RecoveryServices/vaults/CanaryVenusEndtoEnd\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"DinosVaultUR1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A19.949397Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.RecoveryServices/vaults/DinosVaultUR1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoo8\",\"etag\":\"W/\\\"datetime'2020-07-14T06%3A14%3A12.5377965Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovault\",\"etag\":\"W/\\\"datetime'2020-07-06T07%3A14%3A35.1228473Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"gesahoovaultbanner\",\"etag\":\"W/\\\"datetime'2020-07-05T12%3A22%3A20.1815359Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovaultbanner\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault787\",\"etag\":\"W/\\\"datetime'2020-07-09T11%3A58%3A38.7939306Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault787\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vault851\",\"etag\":\"W/\\\"datetime'2020-07-03T14%3A39%3A01.0850308Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault851\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"jakavetSEAvault\",\"etag\":\"W/\\\"datetime'2018-07-18T11%3A03%3A48.0478445Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetSEAvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NilayVault\",\"etag\":\"W/\\\"datetime'2020-02-10T18%3A58%3A58.3339904Z'\\\"\",\"tags\":{\"MAB + Used\":\"\_Yes\",\"Owner\":\"nilsha\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"nilshaafstestvault\",\"etag\":\"W/\\\"datetime'2020-02-06T04%3A15%3A27.8703969Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilshaafstest/providers/Microsoft.RecoveryServices/vaults/nilshaafstestvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"NirajKCanVault1\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A24.9934424Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NirajKCanVault2/providers/Microsoft.RecoveryServices/vaults/NirajKCanVault1\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"PSTestFSRSV1bca8f8e\",\"etag\":\"W/\\\"datetime'2019-04-03T12%3A20%3A24.6265273Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG1bca8f8e/providers/Microsoft.RecoveryServices/vaults/PSTestFSRSV1bca8f8e\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"pstestwlRSV1bca8\",\"etag\":\"W/\\\"datetime'2019-10-30T10%3A18%3A53.8483283Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"rajkstestcm01\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A27.3524558Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajkstestcm01/providers/Microsoft.RecoveryServices/vaults/rajkstestcm01\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sam-rv-sea-can\",\"etag\":\"W/\\\"datetime'2018-02-28T10%3A01%3A22.1790616Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.RecoveryServices/vaults/sam-rv-sea-can\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault\",\"etag\":\"W/\\\"datetime'2020-12-09T08%3A59%3A05.1553594Z'\\\"\",\"tags\":{\"c\":\"d\",\"a\":\"b\",\"e\":\"f\",\"g\":\"h\"},\"identity\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0796693d-c630-49a3-813b-3715e183591d\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"sarath-vault2\",\"etag\":\"W/\\\"datetime'2020-10-09T10%3A00%3A34.8337394Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"MercuryCertRolloverRSVSeaCan\",\"etag\":\"W/\\\"datetime'2018-10-12T07%3A49%3A47.2265436Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/seacanrg/providers/Microsoft.RecoveryServices/vaults/MercuryCertRolloverRSVSeaCan\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A29.3044784Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shambhuCanaryVault2\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A31.4374909Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault2\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shrja-vault\",\"etag\":\"W/\\\"datetime'2020-07-06T11%3A36%3A46.4737448Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.RecoveryServices/vaults/shrja-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"shswain-rsvault-donotuse\",\"etag\":\"W/\\\"datetime'2020-04-16T11%3A29%3A00.0740566Z'\\\"\",\"tags\":{\"Owner\":\"shswai\",\"Purpose\":\"Dev + Testing\",\"DeleteBy\":\"12-2022\",\"MAB Used\":\"Yes\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"newgeetvault\",\"etag\":\"W/\\\"datetime'2020-12-09T06%3A14%3A11.3615575Z'\\\"\",\"tags\":{\"AutoShutdown\":\"No\",\"DeleteBy\":\"01-2022\",\"MABUsed\":\"Yes\",\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"suchandr-test-vault\",\"etag\":\"W/\\\"datetime'2018-12-18T09%3A31%3A05.8772232Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-vault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"ContosoVault\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A34.1345159Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhRG/providers/Microsoft.RecoveryServices/vaults/ContosoVault\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}},{\"location\":\"southeastasia\",\"name\":\"vsarg-sea-RS-1606\",\"etag\":\"W/\\\"datetime'2018-05-18T10%3A44%3A40.9305725Z'\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpointStateForBackup\":\"None\",\"privateEndpointStateForSiteRecovery\":\"None\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-sea-RS-1606\",\"type\":\"Microsoft.RecoveryServices/vaults\",\"sku\":{\"name\":\"RS0\",\"tier\":\"Standard\"}}]}" headers: cache-control: - no-cache content-length: - - '188' + - '37548' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:40:46 GMT + - Sat, 16 Jan 2021 08:07: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: - - '143' - x-powered-by: - - ASP.NET + x-ms-original-request-ids: + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 + - 1afdf447-fe16-448e-9382-345fed9732c7 status: code: 200 message: OK @@ -7069,31 +15572,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/sdfjsldkj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:47 GMT + - Sat, 16 Jan 2021 08:07:05 GMT expires: - '-1' pragma: @@ -7109,7 +15611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '143' x-powered-by: - ASP.NET status: @@ -7123,31 +15625,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;ASEBVTRG;asebvtvm1/protectedItems/VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","name":"VM;iaasvmcontainerv2;ASEBVTRG;asebvtvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"asebvtvm1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:10:14.4183469Z","protectedItemDataId":"263883848880839","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;ASEBVTRG;asebvtvm1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtvm1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:10:25.889668Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2019' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:49 GMT + - Sat, 16 Jan 2021 08:07:07 GMT expires: - '-1' pragma: @@ -7163,7 +15669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '139' x-powered-by: - ASP.NET status: @@ -7177,31 +15683,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/JeremyRG/providers/Microsoft.RecoveryServices/vaults/JeremyVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:51 GMT + - Sat, 16 Jan 2021 08:07:09 GMT expires: - '-1' pragma: @@ -7217,7 +15722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '146' x-powered-by: - ASP.NET status: @@ -7231,31 +15736,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRGcaf8ab5e/providers/Microsoft.RecoveryServices/vaults/PSTestRSVcaf8ab5e/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:52 GMT + - Sat, 16 Jan 2021 08:07:11 GMT expires: - '-1' pragma: @@ -7285,31 +15789,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwusvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:54 GMT + - Sat, 16 Jan 2021 08:07:14 GMT expires: - '-1' pragma: @@ -7325,7 +15828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '141' x-powered-by: - ASP.NET status: @@ -7339,31 +15842,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdkrg/providers/Microsoft.RecoveryServices/vaults/sdkvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:55 GMT + - Sat, 16 Jan 2021 08:07:16 GMT expires: - '-1' pragma: @@ -7379,7 +15881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '139' x-powered-by: - ASP.NET status: @@ -7393,31 +15895,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.RecoveryServices/vaults/sisi-RSV-29-6/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:57 GMT + - Sat, 16 Jan 2021 08:07:17 GMT expires: - '-1' pragma: @@ -7433,7 +15934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '141' x-powered-by: - ASP.NET status: @@ -7447,31 +15948,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-RS-WUS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-RS-WUS-1606/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:40:58 GMT + - Sat, 16 Jan 2021 08:07:19 GMT expires: - '-1' pragma: @@ -7487,7 +15987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '143' x-powered-by: - ASP.NET status: @@ -7501,31 +16001,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseCanaryTest/providers/Microsoft.RecoveryServices/vaults/akkanaseCanaryTestVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:00 GMT + - Sat, 16 Jan 2021 08:07:20 GMT expires: - '-1' pragma: @@ -7541,7 +16040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '145' x-powered-by: - ASP.NET status: @@ -7555,31 +16054,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaTest-rg/providers/Microsoft.RecoveryServices/vaults/hiagaTest-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:01 GMT + - Sat, 16 Jan 2021 08:07:22 GMT expires: - '-1' pragma: @@ -7595,7 +16093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '134' x-powered-by: - ASP.NET status: @@ -7609,31 +16107,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/riteshcVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:03 GMT + - Sat, 16 Jan 2021 08:07:22 GMT expires: - '-1' pragma: @@ -7649,7 +16146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '138' x-powered-by: - ASP.NET status: @@ -7663,31 +16160,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/aruvault1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:05 GMT + - Sat, 16 Jan 2021 08:07:23 GMT expires: - '-1' pragma: @@ -7703,7 +16199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '140' x-powered-by: - ASP.NET status: @@ -7717,31 +16213,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/riteshc1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:06 GMT + - Sat, 16 Jan 2021 08:07:24 GMT expires: - '-1' pragma: @@ -7757,7 +16252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '141' x-powered-by: - ASP.NET status: @@ -7771,31 +16266,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/canadavault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:08 GMT + - Sat, 16 Jan 2021 08:07:27 GMT expires: - '-1' pragma: @@ -7811,7 +16305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '140' x-powered-by: - ASP.NET status: @@ -7825,31 +16319,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/SqlBackupDemoVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:09 GMT + - Sat, 16 Jan 2021 08:07:29 GMT expires: - '-1' pragma: @@ -7865,7 +16358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '142' x-powered-by: - ASP.NET status: @@ -7879,31 +16372,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarathwcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:11 GMT + - Sat, 16 Jan 2021 08:07:32 GMT expires: - '-1' pragma: @@ -7919,7 +16411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '133' x-powered-by: - ASP.NET status: @@ -7933,31 +16425,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-rsv-wcus/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:12 GMT + - Sat, 16 Jan 2021 08:07:35 GMT expires: - '-1' pragma: @@ -7973,7 +16464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '138' x-powered-by: - ASP.NET status: @@ -7987,31 +16478,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/hanauks/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:14 GMT + - Sat, 16 Jan 2021 08:07:37 GMT expires: - '-1' pragma: @@ -8027,7 +16517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '143' x-powered-by: - ASP.NET status: @@ -8041,31 +16531,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/vault146/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:15 GMT + - Sat, 16 Jan 2021 08:07:38 GMT expires: - '-1' pragma: @@ -8081,7 +16570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '138' x-powered-by: - ASP.NET status: @@ -8095,31 +16584,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-ccy/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"akneema-hana-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T03:30:58.3850322Z","protectedItemDataId":"1366978781","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;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/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:31:04.1075006Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akneema-sql-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","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-01-16T03:37:15.4034514Z","protectedItemDataId":"1527441871","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-sql-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-16T03:37:19.0000538Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy/protectedItems/VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","name":"VM;iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"akneema-vm-ccy","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-16T03:31:11.8508231Z","protectedItemDataId":"119104222","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;AKNEEMA;akneema-vm-ccy","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T03:31:39.2850408Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '5878' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:17 GMT + - Sat, 16 Jan 2021 08:07:41 GMT expires: - '-1' pragma: @@ -8135,7 +16633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '139' x-powered-by: - ASP.NET status: @@ -8149,31 +16647,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","name":"VM;iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM1929e3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:42:06.7703986Z","protectedItemDataId":"35184458305137","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg;pstestvm1929e3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.Compute/virtualMachines/PSTestVM1929e3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG/providers/Microsoft.RecoveryServices/vaults/hiagaSrcVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1958' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:18 GMT + - Sat, 16 Jan 2021 08:07:42 GMT expires: - '-1' pragma: @@ -8189,7 +16690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '137' x-powered-by: - ASP.NET status: @@ -8203,31 +16704,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3/protectedItems/VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","name":"VM;iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400002,"title":"BackUpOperationFailed","message":"Backup + failed with an internal error.","recommendations":["Follow the instructions + at https://aka.ms/backup-operation-failed and retry the backup operation. + If it fails further, please contact Microsoft support."]}]}},"friendlyName":"PSTestVM0e34d3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-12-22T16:46:31.8022704Z","protectedItemDataId":"140738989571218","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;pstestrg0e34df9d7;pstestvm0e34d3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.Compute/virtualMachines/PSTestVM0e34d3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG0e34df9d7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV0e34df9d/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2023' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:20 GMT + - Sat, 16 Jan 2021 08:07:43 GMT expires: - '-1' pragma: @@ -8243,7 +16747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '136' x-powered-by: - ASP.NET status: @@ -8257,31 +16761,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM545483","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","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-01-15T21:34:06.6120994Z","protectedItemDataId":"70370838940336","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm545483","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG54548c5f7/providers/Microsoft.RecoveryServices/vaults/PSTestRSV54548c5f/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:34:11.2719107Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1817' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:21 GMT + - Sat, 16 Jan 2021 08:07:45 GMT expires: - '-1' pragma: @@ -8297,7 +16801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '144' x-powered-by: - ASP.NET status: @@ -8311,31 +16815,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243/protectedItems/VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","name":"VM;iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"PSTestVM664243","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","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-01-15T21:06:44.4996797Z","protectedItemDataId":"140739447045620","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;hiagasrcrg2;pstestvm664243","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM664243","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG66424fe37/providers/Microsoft.RecoveryServices/vaults/PSTestRSV66424fe3/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T21:06:56.7157962Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1818' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:23 GMT + - Sat, 16 Jan 2021 08:07:46 GMT expires: - '-1' pragma: @@ -8351,7 +16855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '141' x-powered-by: - ASP.NET status: @@ -8365,31 +16869,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracvaultcredtest/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:25 GMT + - Sat, 16 Jan 2021 08:07:48 GMT expires: - '-1' pragma: @@ -8405,7 +16908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '137' x-powered-by: - ASP.NET status: @@ -8419,31 +16922,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/softdletevault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:27 GMT + - Sat, 16 Jan 2021 08:07:51 GMT expires: - '-1' pragma: @@ -8459,7 +16961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '135' x-powered-by: - ASP.NET status: @@ -8473,31 +16975,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanaselrs;akkanaselrstest/protectedItems/VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","name":"VM;iaasvmcontainerv2;akkanaselrs;akkanaselrstest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"akkanaseLRSTest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","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-01-15T17:01:27.6629072Z","protectedItemDataId":"52778032964849","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanaselrs;akkanaselrstest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.Compute/virtualMachines/akkanaseLRSTest","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseLRS/providers/Microsoft.RecoveryServices/vaults/akkanaseLRSVault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T17:01:30.7079738Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1834' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:28 GMT + - Sat, 16 Jan 2021 08:07:52 GMT expires: - '-1' pragma: @@ -8513,7 +17015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '141' x-powered-by: - ASP.NET status: @@ -8527,31 +17029,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-hana-vm-new/protectedItems/VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","name":"VM;iaasvmcontainerv2;akneema;akneema-hana-vm-new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}]}},"friendlyName":"akneema-hana-vm-new","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-15T15:40:22.3288383Z","protectedItemDataId":"52777015471742","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akneema;akneema-hana-vm-new","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm-new","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-new/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T15:37:06.7393487Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2294' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:30 GMT + - Sat, 16 Jan 2021 08:07:53 GMT expires: - '-1' pragma: @@ -8567,7 +17076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '140' x-powered-by: - ASP.NET status: @@ -8581,31 +17090,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASERG/providers/Microsoft.RecoveryServices/vaults/aseecyvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:31 GMT + - Sat, 16 Jan 2021 08:07:55 GMT expires: - '-1' pragma: @@ -8621,7 +17129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '142' x-powered-by: - ASP.NET status: @@ -8635,31 +17143,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-test2/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-test2","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-test2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sarath-test2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1864336160","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-test2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-test2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.RecoveryServices/vaults/amchandnTest1s/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1418' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:33 GMT + - Sat, 16 Jan 2021 08:07:56 GMT expires: - '-1' pragma: @@ -8675,7 +17182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '140' x-powered-by: - ASP.NET status: @@ -8689,31 +17196,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhi555/providers/Microsoft.RecoveryServices/vaults/newvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:34 GMT + - Sat, 16 Jan 2021 08:07:56 GMT expires: - '-1' pragma: @@ -8729,7 +17235,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '137' x-powered-by: - ASP.NET status: @@ -8743,31 +17249,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afssoftdeleterg/providers/Microsoft.RecoveryServices/vaults/vault528/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:36 GMT + - Sat, 16 Jan 2021 08:07:57 GMT expires: - '-1' pragma: @@ -8783,7 +17288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '138' x-powered-by: - ASP.NET status: @@ -8797,31 +17302,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akkanasesdktesting;testbackupvm/protectedItems/VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","name":"VM;iaasvmcontainerv2;akkanasesdktesting;testbackupvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400138,"title":"UserErrorSubnetNotFoundV2","message":"Subnet + doesn''t exist.","recommendations":["Please make sure that subnet exists or + select a different subnet."]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}]}},"friendlyName":"TestBackupVM","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-11-24T07:12:36.4187251Z","protectedItemDataId":"1121317794","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;akkanasesdktesting;testbackupvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.Compute/virtualMachines/TestBackupVM","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akkanaseSdKTesting/providers/Microsoft.RecoveryServices/vaults/akkanaseSdKTesting/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-10-29T07:05:21.832114Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2490' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:37 GMT + - Sat, 16 Jan 2021 08:07:57 GMT expires: - '-1' pragma: @@ -8837,7 +17349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '132' x-powered-by: - ASP.NET status: @@ -8851,31 +17363,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner3","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","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-01-15T18:10:14.8103493Z","protectedItemDataId":"17593156659350","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner3","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T18:10:18.4942788Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1810' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:39 GMT + - Sat, 16 Jan 2021 08:07:57 GMT expires: - '-1' pragma: @@ -8891,7 +17403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '142' x-powered-by: - ASP.NET status: @@ -8905,31 +17417,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-seacanary-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:41 GMT + - Sat, 16 Jan 2021 08:07:58 GMT expires: - '-1' pragma: @@ -8945,7 +17456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '131' x-powered-by: - ASP.NET status: @@ -8959,31 +17470,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"geetasqlvmbanner2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","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-01-15T18:02:11.2205131Z","protectedItemDataId":"2124204057","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/geetavaultbanner3/backupPolicies/testgeeta","policyName":"testgeeta","lastRecoveryPoint":"2021-01-15T18:02:16.8403179Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1808' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:42 GMT + - Sat, 16 Jan 2021 08:07:58 GMT expires: - '-1' pragma: @@ -8999,7 +17510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '139' x-powered-by: - ASP.NET status: @@ -9013,31 +17524,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anjor-mabcanary/providers/Microsoft.RecoveryServices/vaults/Anjor-RSVSeaCan/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:44 GMT + - Sat, 16 Jan 2021 08:07:59 GMT expires: - '-1' pragma: @@ -9053,7 +17563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '136' x-powered-by: - ASP.NET status: @@ -9067,31 +17577,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault-donotdelete/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:45 GMT + - Sat, 16 Jan 2021 08:07:59 GMT expires: - '-1' pragma: @@ -9107,7 +17616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '143' x-powered-by: - ASP.NET status: @@ -9121,31 +17630,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.RecoveryServices/vaults/asebvtvault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:47 GMT + - Sat, 16 Jan 2021 08:08:00 GMT expires: - '-1' pragma: @@ -9161,7 +17669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '140' x-powered-by: - ASP.NET status: @@ -9175,31 +17683,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/canreportingrg/providers/Microsoft.RecoveryServices/vaults/gaallatest2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:48 GMT + - Sat, 16 Jan 2021 08:08:00 GMT expires: - '-1' pragma: @@ -9215,7 +17722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '139' x-powered-by: - ASP.NET status: @@ -9229,31 +17736,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/casabatestgroup1/providers/Microsoft.RecoveryServices/vaults/CasabaVault3827/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:50 GMT + - Sat, 16 Jan 2021 08:08:01 GMT expires: - '-1' pragma: @@ -9269,7 +17775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '142' x-powered-by: - ASP.NET status: @@ -9283,31 +17789,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/gesahoobanner8vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:51 GMT + - Sat, 16 Jan 2021 08:08:01 GMT expires: - '-1' pragma: @@ -9323,7 +17828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '141' x-powered-by: - ASP.NET status: @@ -9337,31 +17842,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive - ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + ParameterSetName: + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault576/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:54 GMT + - Sat, 16 Jan 2021 08:08:02 GMT expires: - '-1' pragma: @@ -9377,7 +17881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '139' x-powered-by: - ASP.NET status: @@ -9391,31 +17895,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testvmsqlchg/protectedItems/VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","name":"VM;iaasvmcontainerv2;chandrikarg;testvmsqlchg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"testvmsqlchg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","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-01-15T22:09:15.3937947Z","protectedItemDataId":"17592392492659","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;chandrikarg;testvmsqlchg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsqlchg","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.RecoveryServices/vaults/vault941/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T22:09:22.2357574Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1797' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:55 GMT + - Sat, 16 Jan 2021 08:08:17 GMT expires: - '-1' pragma: @@ -9431,7 +17935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '138' x-powered-by: - ASP.NET status: @@ -9445,31 +17949,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.RecoveryServices/vaults/vsarg-16116dddddddddddddddddddddddddddd/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:57 GMT + - Sat, 16 Jan 2021 08:08:17 GMT expires: - '-1' pragma: @@ -9485,7 +17988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '142' x-powered-by: - ASP.NET status: @@ -9499,31 +18002,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs/protectedItems/VM;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","name":"VM;iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmgtwfs","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"17593807133781","extendedProperties":{"diskExclusionProperties":{"diskLunList":[1],"isInclusionList":false}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3;clitest-vmgtwfs","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.Compute/virtualMachines/clitest-vmgtwfs","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ei6dipq55hoh2u6b3eleyr4yfbu23y2f7elibqm7au4b2r2jy32d2zt6vxq2fwg3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyjoinjawcvn/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2056' content-type: - application/json date: - - Fri, 18 Dec 2020 10:41:59 GMT + - Sat, 16 Jan 2021 08:08:18 GMT expires: - '-1' pragma: @@ -9539,7 +18041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '138' x-powered-by: - ASP.NET status: @@ -9553,31 +18055,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n/protectedItems/VM;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VM;iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmnpb2n","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"227941807","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttw65usomtlg/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1958' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:00 GMT + - Sat, 16 Jan 2021 08:08:19 GMT expires: - '-1' pragma: @@ -9593,7 +18094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '137' x-powered-by: - ASP.NET status: @@ -9607,31 +18108,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:02 GMT + - Sat, 16 Jan 2021 08:08:18 GMT expires: - '-1' pragma: @@ -9647,7 +18147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '141' x-powered-by: - ASP.NET status: @@ -9661,31 +18161,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx;clitest-vmnirql/protectedItems/VM;iaasvmcontainerv2;clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx;clitest-vmnirql","name":"VM;iaasvmcontainerv2;clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx;clitest-vmnirql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmnirql","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.Compute/virtualMachines/clitest-vmnirql","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"35186200089738","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx;clitest-vmnirql","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.Compute/virtualMachines/clitest-vmnirql","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjqw7u4lyp46qfwfln4zr27z73pnndadrobvbd5gpbgwxhx6cy4qsiqv23sw767ryx/providers/Microsoft.RecoveryServices/vaults/clitest-vault76igf7p7gcj/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1963' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:03 GMT + - Sat, 16 Jan 2021 08:08:19 GMT expires: - '-1' pragma: @@ -9701,7 +18200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '141' x-powered-by: - ASP.NET status: @@ -9715,31 +18214,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75/protectedItems/VM;iaasvmcontainerv2;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","name":"VM;iaasvmcontainerv2;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmzyo75","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1191754781","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.RecoveryServices/vaults/clitest-vault5kfc7hegvxj/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1959' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:05 GMT + - Sat, 16 Jan 2021 08:08:20 GMT expires: - '-1' pragma: @@ -9755,7 +18253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '134' x-powered-by: - ASP.NET status: @@ -9769,31 +18267,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGCanary/providers/Microsoft.RecoveryServices/vaults/CanaryVenusEndtoEnd/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:06 GMT + - Sat, 16 Jan 2021 08:08:21 GMT expires: - '-1' pragma: @@ -9809,7 +18306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '142' x-powered-by: - ASP.NET status: @@ -9823,31 +18320,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.RecoveryServices/vaults/DinosVaultUR1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:08 GMT + - Sat, 16 Jan 2021 08:08:20 GMT expires: - '-1' pragma: @@ -9863,7 +18359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '135' x-powered-by: - ASP.NET status: @@ -9877,31 +18373,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","name":"VM;iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}]}},"friendlyName":"geetasqlvmbanner14","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner14","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionSuggested","healthDetails":[{"code":400288,"title":"UserErrorRpCollectionDeleted","message":"The + Restore Point collection has been deleted by the user.","recommendations":["The + Restore Point collection used during Backup has been deleted. Please retry + the operation and do not delete any Restore Point collections created under + the Resource Group."]}],"lastBackupStatus":"Failed","lastBackupTime":"2021-01-15T16:09:14.2584534Z","protectedItemDataId":"70370526978085","extendedProperties":{"diskExclusionProperties":{"diskLunList":[],"isInclusionList":true}},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetasqlvmbanner14","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetasqlvmbanner14","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-14T16:06:07.8962674Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1/protectedItems/VM;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","name":"VM;iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientUnhealthy","resourceHealthDetails":[{"code":400052,"title":"DiffCopyFailedToTransferData","message":"Backup + failed to copy data to vault.","recommendations":["Please retry backup after + sometime. Please see https://azure.microsoft.com/en-us/status/ if there is + an on-going issue with storage or network service and retry backup after issue + is mitigated."]}]}},"friendlyName":"geetsqlvmbanner1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetsqlvmbanner1","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-15T16:06:22.2478471Z","protectedItemDataId":"70370134670681","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;geetsqlvmbanner1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/geetsqlvmbanner1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoo8/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-15T16:06:33.2495808Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '4398' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:09 GMT + - Sat, 16 Jan 2021 08:08:21 GMT expires: - '-1' pragma: @@ -9917,7 +18425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '140' x-powered-by: - ASP.NET status: @@ -9931,31 +18439,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:11 GMT + - Sat, 16 Jan 2021 08:08:22 GMT expires: - '-1' pragma: @@ -9971,7 +18478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '139' x-powered-by: - ASP.NET status: @@ -9985,31 +18492,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/gesahoovaultbanner/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:12 GMT + - Sat, 16 Jan 2021 08:08:23 GMT expires: - '-1' pragma: @@ -10025,7 +18531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '136' x-powered-by: - ASP.NET status: @@ -10039,31 +18545,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault787/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:14 GMT + - Sat, 16 Jan 2021 08:08:22 GMT expires: - '-1' pragma: @@ -10079,7 +18584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '137' x-powered-by: - ASP.NET status: @@ -10093,31 +18598,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.RecoveryServices/vaults/vault851/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:16 GMT + - Sat, 16 Jan 2021 08:08:23 GMT expires: - '-1' pragma: @@ -10133,7 +18637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '135' x-powered-by: - ASP.NET status: @@ -10147,31 +18651,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetSEAvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:18 GMT + - Sat, 16 Jan 2021 08:08:23 GMT expires: - '-1' pragma: @@ -10187,7 +18690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '130' x-powered-by: - ASP.NET status: @@ -10201,31 +18704,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;asebvtrg;asebvtseavm2/protectedItems/VM;iaasvmcontainerv2;asebvtrg;asebvtseavm2","name":"VM;iaasvmcontainerv2;asebvtrg;asebvtseavm2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"asebvtseavm2","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm2","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-01-15T15:08:14.4594937Z","protectedItemDataId":"35185801335735","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;asebvtrg;asebvtseavm2","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm2","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/dailypol567","policyName":"dailypol567","lastRecoveryPoint":"2021-01-15T15:08:23.2514684Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;dinosrgur1;sdsadsad/protectedItems/VM;iaasvmcontainerv2;dinosrgur1;sdsadsad","name":"VM;iaasvmcontainerv2;dinosrgur1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"PersistentDegraded","resourceHealthDetails":[{"code":400196,"title":"UserErrorGuestAgentStatusUnavailable","message":"VM + agent is unable to communicate with the Azure Backup Service.","recommendations":["Ensure + that VM agent is latest and running. Allow access to IP 168.63.129.16 (refer + https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-windows#network-access + ). For more information, please refer to https://aka.ms/guestagent-status-unavailable + "]}]}},"friendlyName":"sdsadsad","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","protectionStatus":"Unhealthy","protectionState":"ProtectionStopped","healthStatus":"ActionSuggested","healthDetails":[{"code":400196,"title":"UserErrorGuestAgentStatusUnavailable","message":"VM + agent is unable to communicate with the Azure Backup Service.","recommendations":["Ensure + that VM agent is latest and running. Allow access to IP 168.63.129.16 (refer + https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/features-windows#network-access + ). For more information, please refer to https://aka.ms/guestagent-status-unavailable + "]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-10-11T16:07:11.6608253Z","protectedItemDataId":"35184869793789","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;dinosrgur1;sdsadsad","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad","policyId":"","policyName":"","lastRecoveryPoint":"2020-07-27T16:03:37.6716963Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranisd02;mkheranisd02/protectedItems/VM;iaasvmcontainerv2;mkheranisd02;mkheranisd02","name":"VM;iaasvmcontainerv2;mkheranisd02;mkheranisd02","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}]}},"friendlyName":"mkheranisd02","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranisd02/providers/Microsoft.Compute/virtualMachines/mkheranisd02","protectionStatus":"Unhealthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":400136,"title":"UserErrorVmNotFoundV2","message":"Virtual + machine doesn''t exist.","recommendations":["Please make sure that virtual + machine exists or select a different virtual machine. For more details, please + refer to http://aka.ms/UserErrorVmNotFoundV2"]}],"lastBackupStatus":"Failed","lastBackupTime":"2020-09-25T11:49:46.4866891Z","protectedItemDataId":"35185066038379","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;mkheranisd02;mkheranisd02","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranisd02/providers/Microsoft.Compute/virtualMachines/mkheranisd02","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.RecoveryServices/vaults/NilayVault/backupPolicies/weeklypolicy3","policyName":"weeklypolicy3","lastRecoveryPoint":"2020-09-13T22:38:39.3505175Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '6107' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:19 GMT + - Sat, 16 Jan 2021 08:08:24 GMT expires: - '-1' pragma: @@ -10241,7 +18760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '138' x-powered-by: - ASP.NET status: @@ -10255,31 +18774,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilshaafstest/providers/Microsoft.RecoveryServices/vaults/nilshaafstestvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:21 GMT + - Sat, 16 Jan 2021 08:08:25 GMT expires: - '-1' pragma: @@ -10295,7 +18813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '142' x-powered-by: - ASP.NET status: @@ -10309,31 +18827,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NirajKCanVault2/providers/Microsoft.RecoveryServices/vaults/NirajKCanVault1/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:22 GMT + - Sat, 16 Jan 2021 08:08:25 GMT expires: - '-1' pragma: @@ -10349,7 +18866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '140' x-powered-by: - ASP.NET status: @@ -10363,31 +18880,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestFSRG1bca8f8e/providers/Microsoft.RecoveryServices/vaults/PSTestFSRSV1bca8f8e/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:24 GMT + - Sat, 16 Jan 2021 08:08:25 GMT expires: - '-1' pragma: @@ -10403,7 +18919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '141' x-powered-by: - ASP.NET status: @@ -10417,31 +18933,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"InProgress","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:25 GMT + - Sat, 16 Jan 2021 08:08:25 GMT expires: - '-1' pragma: @@ -10457,7 +18972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '138' x-powered-by: - ASP.NET status: @@ -10471,31 +18986,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9b5dbeae-90c0-4609-b71e-114ae3ff1f66?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rajkstestcm01/providers/Microsoft.RecoveryServices/vaults/rajkstestcm01/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","name":"9b5dbeae-90c0-4609-b71e-114ae3ff1f66","status":"Succeeded","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"2020-12-18T10:40:34.7260336Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"49783bc7-e8f5-423f-b055-a7d42f4da759"}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '304' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:27 GMT + - Sat, 16 Jan 2021 08:08:26 GMT expires: - '-1' pragma: @@ -10511,7 +19025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '140' x-powered-by: - ASP.NET status: @@ -10525,39 +19039,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/49783bc7-e8f5-423f-b055-a7d42f4da759?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sam-rg-sea-can/providers/Microsoft.RecoveryServices/vaults/sam-rv-sea-can/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/49783bc7-e8f5-423f-b055-a7d42f4da759","name":"49783bc7-e8f5-423f-b055-a7d42f4da759","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.4254232S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T10:40:34.7260336Z","endTime":"2020-12-18T10:42:26.1514568Z","activityId":"72deccea-411d-11eb-bd23-c03eba45757e"}}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '973' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:29 GMT + - Sat, 16 Jan 2021 08:08: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: @@ -10567,7 +19078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -10581,30 +19092,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection check-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g + - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;dikextest/protectedItems/VM;iaasvmcontainerv2;sarath-rg;dikextest","name":"VM;iaasvmcontainerv2;sarath-rg;dikextest","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":"dikextest","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest","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-01-15T21:06:32.9577544Z","protectedItemDataId":"70370353422863","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;dikextest","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/adi-afec-2","policyName":"adi-afec-2","lastRecoveryPoint":"2021-01-15T21:06:42.3168928Z"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '1914' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:30 GMT + - Sat, 16 Jan 2021 08:08:26 GMT expires: - '-1' pragma: @@ -10620,7 +19132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -10640,38 +19152,43 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"location":"westus","name":"Issue133VaultTwo","etag":"W/\"datetime''2020-10-08T21%3A11%3A10.2885322Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bd258003-d032-436b-91a3-d246c6c586d9","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133Vault","etag":"W/\"datetime''2020-10-07T15%3A01%3A02.6385376Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"db162643-23c2-45ba-aff1-d1b429353bda","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"Issue133VaultP2","etag":"W/\"datetime''2020-10-07T15%3A06%3A10.4024415Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6daa354b-b8f0-4d51-8b93-06c1329c758e","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"VaultTwo132","etag":"W/\"datetime''2020-10-08T23%3A19%3A21.36034Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d2011342-6a45-44b7-b263-4cbcf849c042","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"what-if-dania-vault","etag":"W/\"datetime''2020-08-18T15%3A28%3A15.8086333Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vault3cpmb5svk72","etag":"W/\"datetime''2020-12-18T08%3A53%3A23.3142838Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzdobuyl7nxx","etag":"W/\"datetime''2020-12-18T08%3A59%3A23.2409251Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultow7ptzv7op5","etag":"W/\"datetime''2020-12-18T07%3A08%3A56.1522303Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T10%3A36%3A32.4371556Z''\"","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: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarath-unman-vm/protectedItems/VM;iaasvmcontainerv2;sarath-rg;sarath-unman-vm","name":"VM;iaasvmcontainerv2;sarath-rg;sarath-unman-vm","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":"sarath-unman-vm","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-unman-vm","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":"2020-10-06T17:01:17.1475898Z","protectedItemDataId":"70370257865258","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;sarath-rg;sarath-unman-vm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-unman-vm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault2/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-10-06T17:01:36.6684066Z"}}]}' headers: cache-control: - no-cache content-length: - - '5008' + - '1964' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 10:42:32 GMT + - Sat, 16 Jan 2021 08:08: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-original-request-ids: - - 49611e52-ecda-4a36-bdcc-ced484bd68f2 - - 49611e52-ecda-4a36-bdcc-ced484bd68f2 - - 49611e52-ecda-4a36-bdcc-ced484bd68f2 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -10689,12 +19206,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultTwo/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/seacanrg/providers/Microsoft.RecoveryServices/vaults/MercuryCertRolloverRSVSeaCan/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10706,7 +19223,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:33 GMT + - Sat, 16 Jan 2021 08:08:27 GMT expires: - '-1' pragma: @@ -10722,7 +19239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -10742,12 +19259,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133Vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10759,7 +19276,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:34 GMT + - Sat, 16 Jan 2021 08:08:27 GMT expires: - '-1' pragma: @@ -10775,7 +19292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -10795,12 +19312,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/Issue133VaultP2/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shambhuCanaryRG/providers/Microsoft.RecoveryServices/vaults/shambhuCanaryVault2/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10812,7 +19329,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:35 GMT + - Sat, 16 Jan 2021 08:08:29 GMT expires: - '-1' pragma: @@ -10828,7 +19345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -10848,12 +19365,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.RecoveryServices/vaults/VaultTwo132/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.RecoveryServices/vaults/shrja-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -10865,7 +19382,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:36 GMT + - Sat, 16 Jan 2021 08:08:28 GMT expires: - '-1' pragma: @@ -10881,7 +19398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '133' x-powered-by: - ASP.NET status: @@ -10901,26 +19418,27 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupProtectedItems?api-version=2020-10-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/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;template-specs-dania/protectedItems/VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","name":"VM;iaasvmcontainerv2;templatespecscli;template-specs-dania","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"Template-Specs-Dania","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","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":"2020-08-28T01:23:18.0375903Z","protectedItemDataId":"932350677515017022","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;template-specs-dania","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/Template-Specs-Dania","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:23:20.9520834Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;templatespecscli;windowswhatif/protectedItems/VM;iaasvmcontainerv2;templatespecscli;windowswhatif","name":"VM;iaasvmcontainerv2;templatespecscli;windowswhatif","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"WindowsWhatIf","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","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":"2020-08-28T01:18:12.7878829Z","protectedItemDataId":"932350676653089390","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;templatespecscli;windowswhatif","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Compute/virtualMachines/WindowsWhatIf","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.RecoveryServices/vaults/what-if-dania-vault/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-08-28T01:18:15.7642592Z"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlvmgeeta/protectedItems/VM;iaasvmcontainerv2;gesahoo;sqlvmgeeta","name":"VM;iaasvmcontainerv2;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqlvmgeeta","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-08-03T21:11:54.396728Z","protectedItemDataId":"52777469928480","extendedProperties":{},"protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;gesahoo;sqlvmgeeta","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta","policyId":"","policyName":"","lastRecoveryPoint":"2020-08-03T21:11:58.2650769Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"shswain-lin-man-pssd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd","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-01-16T00:09:16.3045333Z","protectedItemDataId":"52777211426397","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-man-pssd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/shswainpolicy-donotuse","policyName":"shswainpolicy-donotuse","lastRecoveryPoint":"2021-01-16T00:09:21.1532978Z"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd/protectedItems/VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VM;iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","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":"shswain-lin-unman-shdd","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd","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-01-16T00:07:40.6173628Z","protectedItemDataId":"52778470662281","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;shswain-rg-donotuse;shswain-lin-unman-shdd","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.RecoveryServices/vaults/shswain-rsvault-donotuse/backupPolicies/shswainpolicy-donotuse","policyName":"shswainpolicy-donotuse","lastRecoveryPoint":"2021-01-16T00:07:43.3076516Z"}}]}' headers: cache-control: - no-cache content-length: - - '3478' + - '5497' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:36 GMT + - Sat, 16 Jan 2021 08:08:30 GMT expires: - '-1' pragma: @@ -10936,7 +19454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: @@ -10956,24 +19474,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupProtectedItems?api-version=2020-10-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.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmapgzg","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198874820525","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmapgzg","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmapgzg","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:29.9122014Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:15:50.9164206"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.RecoveryServices/vaults/clitest-vault3cpmb5svk72/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud/protectedItems/VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","name":"VM;iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmncbud","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260842198987865464","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al;clitest-vmncbud","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcd62l2c4ftjismj2rlndf6u4zyhelwthqizx5kyvtrvydzwobsqqauerxv5web5al/providers/Microsoft.Compute/virtualMachines/clitest-vmncbud","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T08:58:48.8256655Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:16:09.8298847"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;testgeet1_group;testgeet1/protectedItems/VM;iaasvmcontainerv2;testgeet1_group;testgeet1","name":"VM;iaasvmcontainerv2;testgeet1_group;testgeet1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testgeet1","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.Compute/virtualMachines/testgeet1","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"412327963","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;testgeet1_group;testgeet1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.Compute/virtualMachines/testgeet1","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testgeet1_group/providers/Microsoft.RecoveryServices/vaults/newgeetvault/backupPolicies/geetnewpolicy","policyName":"geetnewpolicy"}}]}' headers: cache-control: - no-cache content-length: - - '3725' + - '1412' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:38 GMT + - Sat, 16 Jan 2021 08:08:30 GMT expires: - '-1' pragma: @@ -10989,7 +19507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -11009,26 +19527,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.RecoveryServices/vaults/suchandr-test-vault/backupProtectedItems?api-version=2020-10-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.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzdobuyl7nxx/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp/protectedItems/VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","name":"VM;iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"TransientDegraded","resourceHealthDetails":[{"code":400158,"title":"UserErrorJobSuccessfullyCancelled","message":"Job - is cancelled.","recommendations":[]}]}},"friendlyName":"clitest-vm73ggp","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T09:02:47.5157261Z","protectedItemDataId":"2260877383782914097","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt;clitest-vm73ggp","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgaqyxx5cf2vjxriazlgrub6jc6pgfi6dayhsphnlslhc2wsdbihmgo2adptljoyt/providers/Microsoft.Compute/virtualMachines/clitest-vm73ggp","policyId":"","policyName":"","lastRecoveryPoint":"2020-12-18T09:02:51.1460143Z","deferredDeleteTimeInUTC":"2020-12-18T10:26:12.4068784Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:43:31.3633471"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2453' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:40 GMT + - Sat, 16 Jan 2021 08:08:31 GMT expires: - '-1' pragma: @@ -11044,7 +19560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '133' x-powered-by: - ASP.NET status: @@ -11064,24 +19580,24 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhRG/providers/Microsoft.RecoveryServices/vaults/ContosoVault/backupProtectedItems?api-version=2020-10-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.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmoo3ce","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605737359848","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmoo3ce","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmoo3ce","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:13:52.6202294Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:31:09.6816363"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultow7ptzv7op5/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh/protectedItems/VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","name":"VM;iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vmpuclh","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","protectionStatus":"Healthy","protectionState":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260824605576735085","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz;clitest-vmpuclh","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrcd5jas6ux3gw5s4exj4cn64nf6zkhjiex67j73djdzksjah5p525bj3h5eowmlaz/providers/Microsoft.Compute/virtualMachines/clitest-vmpuclh","policyId":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T07:14:11.4529936Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.20:31:28.5144005"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3725' + - '12' content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:42 GMT + - Sat, 16 Jan 2021 08:08:30 GMT expires: - '-1' pragma: @@ -11097,7 +19613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -11117,12 +19633,12 @@ interactions: ParameterSetName: - --vm-id User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vsarg-sea-RS-1606/providers/Microsoft.RecoveryServices/vaults/vsarg-sea-RS-1606/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: string: '{"value":[]}' @@ -11134,7 +19650,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:43 GMT + - Sat, 16 Jan 2021 08:08:30 GMT expires: - '-1' pragma: @@ -11150,7 +19666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -11170,12 +19686,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -11187,7 +19703,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:42:45 GMT + - Sat, 16 Jan 2021 08:08:32 GMT expires: - '-1' pragma: @@ -11225,8 +19741,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -11240,7 +19756,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:42:54 GMT + - Sat, 16 Jan 2021 08:08:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_restore.yaml index 5697578c45d..a671fa134c2 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_restore.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2020-12-18T10%3A43%3A14.2649768Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:43:16 GMT + - Wed, 20 Jan 2021 06:33:11 GMT expires: - '-1' pragma: @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T10:42:59Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-20T06:33:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:43:17 GMT + - Wed, 20 Jan 2021 06:33:12 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 10:43:17 GMT + - Wed, 20 Jan 2021 06:33:12 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 10:48:17 GMT + - Wed, 20 Jan 2021 06:38:12 GMT source-age: - - '208' + - '55' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - MISS, HIT x-cache-hits: - - 2, 0 + - 0, 1 x-content-type-options: - nosniff x-fastly-request-id: - - e71a46c54b4ee03719426c746db5dca3f3c41916 + - a7c85f1dd17d7fd5270cbf5737c31946a8d111a9 x-frame-options: - deny x-github-request-id: - - D920:4F30:C02CD:DA7F4:5FDC83F1 + - 1D88:385C:5B9DB:61936:6007BED4 x-served-by: - - cache-mia11336-MIA + - cache-sin18023-SIN x-timer: - - S1608288198.907306,VS0,VE24 + - S1611124393.646240,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:43:17 GMT + - Wed, 20 Jan 2021 06:33:12 GMT expires: - '-1' pragma: @@ -293,18 +290,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_S6a9hAhuiOMSDLuAxMvYU2Gy0Wwta9wH","name":"vm_deploy_S6a9hAhuiOMSDLuAxMvYU2Gy0Wwta9wH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17758724923385834001","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T10:43:24.6388739Z","duration":"PT3.2157982S","correlationId":"7a3fb513-f2ac-417a-a07f-8b3ea0204351","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-vm000004VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000004VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_q3nktSXCnjXY9RYOMgmlolXyrOTY4FYK","name":"vm_deploy_q3nktSXCnjXY9RYOMgmlolXyrOTY4FYK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15340353630213551227","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-20T06:33:15.3238456Z","duration":"PT1.4836652S","correlationId":"be50cba0-a9b4-483e-a0de-f28f77a11c89","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-vm000004VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000004VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_S6a9hAhuiOMSDLuAxMvYU2Gy0Wwta9wH/operationStatuses/08585933186840545703?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_q3nktSXCnjXY9RYOMgmlolXyrOTY4FYK/operationStatuses/08585904824916374504?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -312,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:43:26 GMT + - Wed, 20 Jan 2021 06:33:15 GMT expires: - '-1' pragma: @@ -340,10 +337,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585904824916374504?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, 20 Jan 2021 06:33:45 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585904824916374504?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, 20 Jan 2021 06:34: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: 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933186840545703?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585904824916374504?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:43:58 GMT + - Wed, 20 Jan 2021 06:34:46 GMT expires: - '-1' pragma: @@ -383,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933186840545703?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585904824916374504?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -398,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:28 GMT + - Wed, 20 Jan 2021 06:35:16 GMT expires: - '-1' pragma: @@ -426,22 +509,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_S6a9hAhuiOMSDLuAxMvYU2Gy0Wwta9wH","name":"vm_deploy_S6a9hAhuiOMSDLuAxMvYU2Gy0Wwta9wH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17758724923385834001","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T10:44:16.6309298Z","duration":"PT55.2078541S","correlationId":"7a3fb513-f2ac-417a-a07f-8b3ea0204351","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-vm000004VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000004VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000004VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_q3nktSXCnjXY9RYOMgmlolXyrOTY4FYK","name":"vm_deploy_q3nktSXCnjXY9RYOMgmlolXyrOTY4FYK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15340353630213551227","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-20T06:35:06.4765465Z","duration":"PT1M52.6363661S","correlationId":"be50cba0-a9b4-483e-a0de-f28f77a11c89","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-vm000004VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"clitest-vm000004VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"clitest-vm000004PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"clitest-vm000004VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"clitest-vm000004"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/clitest-vm000004NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/clitest-vm000004VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4086' + - '4088' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:28 GMT + - Wed, 20 Jan 2021 06:35:16 GMT expires: - '-1' pragma: @@ -469,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: @@ -478,16 +561,16 @@ interactions: \ \"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\": \"472a3fad-157b-49e3-aad2-a38f2252c640\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2c55d840-2354-4e70-978c-13a1acf7a695\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\",\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-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": @@ -501,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T10:44:30+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-20T06:35:17+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:43:51.9854576+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-20T06:33:47.3133552+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:44:15.7826358+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-20T06:35:04.8925681+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}" @@ -518,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:30 GMT + - Wed, 20 Jan 2021 06:35:16 GMT expires: - '-1' pragma: @@ -539,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31951 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK @@ -547,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -557,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic\",\r\n - \ \"etag\": \"W/\\\"a88174c1-f1b1-4b1b-a567-29e8f1ded45c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"50919a6a-1c08-4d7f-9135-552c5683c01d\\\"\",\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\": \"e9ac4025-a43b-4063-adc6-cc132db7aee1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"dad94ba3-3b48-4209-ae5f-708f0b6c6f1c\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigclitest-vm000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/clitest-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\",\r\n - \ \"etag\": \"W/\\\"a88174c1-f1b1-4b1b-a567-29e8f1ded45c\\\"\",\r\n + \ \"etag\": \"W/\\\"50919a6a-1c08-4d7f-9135-552c5683c01d\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -582,8 +662,8 @@ interactions: \ },\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\": - \"h5z5plremebehfqacbpemeyrch.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-8B-38\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"fssqliklmxhuhivgwvkyxuhbec.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-C7-16-85\",\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-vm000004NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -597,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:32 GMT + - Wed, 20 Jan 2021 06:35:17 GMT etag: - - W/"a88174c1-f1b1-4b1b-a567-29e8f1ded45c" + - W/"50919a6a-1c08-4d7f-9135-552c5683c01d" expires: - '-1' pragma: @@ -616,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 70d8b575-1fd8-4b07-a913-802d7cd20a61 + - 42d2edde-abe7-49ca-8370-d078f33a26ea status: code: 200 message: OK @@ -624,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -634,22 +714,19 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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-vm000004PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"clitest-vm000004PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/clitest-vm000004PublicIP\",\r\n - \ \"etag\": \"W/\\\"94ffdc4c-cd5d-4e78-adcf-ed696df70c97\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"014fbcd1-0e0b-488b-85b2-6da181a4737e\\\"\",\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\": \"1b8772d0-919b-4aa5-9e86-9a0dc450418f\",\r\n - \ \"ipAddress\": \"13.67.113.59\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"e23b9419-a49e-4e56-8dc0-7ccd136ce667\",\r\n + \ \"ipAddress\": \"207.46.233.167\",\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-vm000004VMNic/ipConfigurations/ipconfigclitest-vm000004\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -657,13 +734,13 @@ interactions: cache-control: - no-cache content-length: - - '1181' + - '1183' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:32 GMT + - Wed, 20 Jan 2021 06:35:17 GMT etag: - - W/"94ffdc4c-cd5d-4e78-adcf-ed696df70c97" + - W/"014fbcd1-0e0b-488b-85b2-6da181a4737e" expires: - '-1' pragma: @@ -680,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f5c9a3f-41f3-4b06-af97-3cbb4713a543 + - e48522f4-7f12-4d8e-9a56-a78ca8c37c67 status: code: 200 message: OK @@ -698,7 +775,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000004?$expand=instanceView&api-version=2020-06-01 response: @@ -707,16 +784,16 @@ interactions: \ \"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\": \"472a3fad-157b-49e3-aad2-a38f2252c640\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2c55d840-2354-4e70-978c-13a1acf7a695\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\",\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-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\"\r\n \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"clitest-vm000004\",\r\n \ \"adminUsername\": \"clitest-vm000004\",\r\n \"windowsConfiguration\": @@ -730,16 +807,16 @@ interactions: \ {\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\": \"2020-12-18T10:44:33+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-20T06:35:17+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000004_disk1_9ce447a3b356448fb7e99b967d75ed1e\",\r\n \"statuses\": + \"clitest-vm000004_OsDisk_1_cdf1c65ed2f942c794a09db6c82cc8ac\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T10:43:51.9854576+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-20T06:33:47.3133552+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T10:44:15.7826358+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-20T06:35:04.8925681+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}" @@ -747,11 +824,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 10:44:32 GMT + - Wed, 20 Jan 2021 06:35:17 GMT expires: - '-1' pragma: @@ -768,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31950 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31981 status: code: 200 message: OK @@ -786,15 +863,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2020-12-18T10%3A43%3A14.2649768Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -803,7 +880,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:44:33 GMT + - Wed, 20 Jan 2021 06:35:18 GMT expires: - '-1' pragma: @@ -835,15 +912,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-12-18T20:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T20:30: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-vault000003/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-01-20T16:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-20T16:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -852,7 +929,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:44:35 GMT + - Wed, 20 Jan 2021 06:35:18 GMT expires: - '-1' pragma: @@ -888,24 +965,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectableItems?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwhbkm5oafol5rsvlah3iprahl45rbwefhcyrmxmdal52el5utgb3no63ypplmixdw;clitest-vmcopn3/protectableItems/vm;iaasvmcontainerv2;clitest.rgwhbkm5oafol5rsvlah3iprahl45rbwefhcyrmxmdal52el5utgb3no63ypplmixdw;clitest-vmcopn3","name":"iaasvmcontainerv2;clitest.rgwhbkm5oafol5rsvlah3iprahl45rbwefhcyrmxmdal52el5utgb3no63ypplmixdw;clitest-vmcopn3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwhbkm5oafol5rsvlah3iprahl45rbwefhcyrmxmdal52el5utgb3no63ypplmixdw/providers/Microsoft.Compute/virtualMachines/clitest-vmcopn3","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwhbkm5oafol5rsvlah3iprahl45rbwefhcyrmxmdal52el5utgb3no63ypplmixdw","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmcopn3","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '2816' content-type: - application/json date: - - Fri, 18 Dec 2020 10:44:37 GMT + - Wed, 20 Jan 2021 06:35:19 GMT expires: - '-1' pragma: @@ -943,28 +1020,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/refreshContainers?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/refreshContainers?api-version=2020-10-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-vault000003/backupFabrics/Azure/operationsStatus/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationsStatus/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:39 GMT + - Wed, 20 Jan 2021 06:35:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -992,12 +1069,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1007,11 +1084,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:42 GMT + - Wed, 20 Jan 2021 06:35:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1039,12 +1116,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1054,11 +1131,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:45 GMT + - Wed, 20 Jan 2021 06:35:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1086,12 +1163,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1101,11 +1178,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:46 GMT + - Wed, 20 Jan 2021 06:35:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1133,12 +1210,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1148,11 +1225,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:48 GMT + - Wed, 20 Jan 2021 06:35:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1180,12 +1257,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1195,11 +1272,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:49 GMT + - Wed, 20 Jan 2021 06:35:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1227,12 +1304,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' @@ -1242,11 +1319,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:52 GMT + - Wed, 20 Jan 2021 06:35:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1274,22 +1351,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/7b10d089-4fb8-47c8-be36-c66acb32b5d0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 10:44:53 GMT + - Wed, 20 Jan 2021 06:35:28 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1300,6 +1381,96 @@ interactions: - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 20 Jan 2021 06:35:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/operationResults/e864d73f-dc32-4dbc-b66f-7f72cfff0276?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Wed, 20 Jan 2021 06:35:31 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: + - '141' + x-powered-by: + - ASP.NET status: code: 204 message: No Content @@ -1317,24 +1488,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectableItems?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;akneema;akneema-sql-vm-crr/protectableItems/vm;iaasvmcontainerv2;akneema;akneema-sql-vm-crr","name":"iaasvmcontainerv2;akneema;akneema-sql-vm-crr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-vm-crr","virtualMachineVersion":"Compute","resourceGroup":"akneema","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"akneema-sql-vm-crr","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectableItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vm000004","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;kheranirg2;mkheranipolicy6/protectableItems/vm;iaasvmcontainerv2;kheranirg2;mkheranipolicy6","name":"iaasvmcontainerv2;kheranirg2;mkheranipolicy6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kheranirg2/providers/Microsoft.Compute/virtualMachines/mkheranipolicy6","virtualMachineVersion":"Compute","resourceGroup":"kheranirg2","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;mkheranirg;mkheranipolicy2/protectableItems/vm;iaasvmcontainerv2;mkheranirg;mkheranipolicy2","name":"iaasvmcontainerv2;mkheranirg;mkheranipolicy2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Compute/virtualMachines/mkheranipolicy2","virtualMachineVersion":"Compute","resourceGroup":"mkheranirg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"mkheranipolicy2","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '4076' content-type: - application/json date: - - Fri, 18 Dec 2020 10:44:54 GMT + - Wed, 20 Jan 2021 06:35:31 GMT expires: - '-1' pragma: @@ -1376,28 +1547,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/vm%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 10:44:57 GMT + - Wed, 20 Jan 2021 06:35:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1425,15 +1596,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1442,7 +1613,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:44:59 GMT + - Wed, 20 Jan 2021 06:35:33 GMT expires: - '-1' pragma: @@ -1478,15 +1649,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1495,7 +1666,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:01 GMT + - Wed, 20 Jan 2021 06:35:34 GMT expires: - '-1' pragma: @@ -1531,15 +1702,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1548,7 +1719,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:03 GMT + - Wed, 20 Jan 2021 06:35:36 GMT expires: - '-1' pragma: @@ -1584,15 +1755,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1601,7 +1772,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:04 GMT + - Wed, 20 Jan 2021 06:35:37 GMT expires: - '-1' pragma: @@ -1637,15 +1808,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1654,7 +1825,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:06 GMT + - Wed, 20 Jan 2021 06:35:38 GMT expires: - '-1' pragma: @@ -1690,15 +1861,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1707,7 +1878,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:08 GMT + - Wed, 20 Jan 2021 06:35:40 GMT expires: - '-1' pragma: @@ -1743,15 +1914,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1760,7 +1931,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:09 GMT + - Wed, 20 Jan 2021 06:35:43 GMT expires: - '-1' pragma: @@ -1796,15 +1967,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1813,7 +1984,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:11 GMT + - Wed, 20 Jan 2021 06:35:44 GMT expires: - '-1' pragma: @@ -1849,15 +2020,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1866,7 +2037,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:12 GMT + - Wed, 20 Jan 2021 06:35:45 GMT expires: - '-1' pragma: @@ -1902,15 +2073,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1919,7 +2090,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:14 GMT + - Wed, 20 Jan 2021 06:35:47 GMT expires: - '-1' pragma: @@ -1955,15 +2126,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +2143,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:15 GMT + - Wed, 20 Jan 2021 06:35:48 GMT expires: - '-1' pragma: @@ -2008,15 +2179,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2025,7 +2196,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:17 GMT + - Wed, 20 Jan 2021 06:35:49 GMT expires: - '-1' pragma: @@ -2061,15 +2232,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2078,7 +2249,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:18 GMT + - Wed, 20 Jan 2021 06:35:50 GMT expires: - '-1' pragma: @@ -2114,15 +2285,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2131,7 +2302,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:20 GMT + - Wed, 20 Jan 2021 06:35:52 GMT expires: - '-1' pragma: @@ -2167,15 +2338,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2184,7 +2355,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:21 GMT + - Wed, 20 Jan 2021 06:35:53 GMT expires: - '-1' pragma: @@ -2220,15 +2391,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2237,7 +2408,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:23 GMT + - Wed, 20 Jan 2021 06:35:54 GMT expires: - '-1' pragma: @@ -2273,15 +2444,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2290,7 +2461,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:25 GMT + - Wed, 20 Jan 2021 06:35:56 GMT expires: - '-1' pragma: @@ -2326,15 +2497,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2343,7 +2514,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:26 GMT + - Wed, 20 Jan 2021 06:35:57 GMT expires: - '-1' pragma: @@ -2379,15 +2550,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2396,7 +2567,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:28 GMT + - Wed, 20 Jan 2021 06:35:58 GMT expires: - '-1' pragma: @@ -2432,15 +2603,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2449,7 +2620,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:29 GMT + - Wed, 20 Jan 2021 06:36:00 GMT expires: - '-1' pragma: @@ -2485,15 +2656,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2502,7 +2673,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:31 GMT + - Wed, 20 Jan 2021 06:36:01 GMT expires: - '-1' pragma: @@ -2538,15 +2709,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2555,7 +2726,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:32 GMT + - Wed, 20 Jan 2021 06:36:02 GMT expires: - '-1' pragma: @@ -2591,15 +2762,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2608,7 +2779,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:34 GMT + - Wed, 20 Jan 2021 06:36:04 GMT expires: - '-1' pragma: @@ -2644,15 +2815,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2661,7 +2832,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:35 GMT + - Wed, 20 Jan 2021 06:36:05 GMT expires: - '-1' pragma: @@ -2697,15 +2868,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2714,7 +2885,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:37 GMT + - Wed, 20 Jan 2021 06:36:06 GMT expires: - '-1' pragma: @@ -2750,15 +2921,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2767,7 +2938,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:39 GMT + - Wed, 20 Jan 2021 06:36:07 GMT expires: - '-1' pragma: @@ -2803,15 +2974,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2820,7 +2991,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:41 GMT + - Wed, 20 Jan 2021 06:36:09 GMT expires: - '-1' pragma: @@ -2856,15 +3027,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2873,7 +3044,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:42 GMT + - Wed, 20 Jan 2021 06:36:10 GMT expires: - '-1' pragma: @@ -2909,15 +3080,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2926,7 +3097,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:44 GMT + - Wed, 20 Jan 2021 06:36:11 GMT expires: - '-1' pragma: @@ -2962,15 +3133,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2979,7 +3150,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:46 GMT + - Wed, 20 Jan 2021 06:36:13 GMT expires: - '-1' pragma: @@ -3015,15 +3186,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3032,7 +3203,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:48 GMT + - Wed, 20 Jan 2021 06:36:14 GMT expires: - '-1' pragma: @@ -3068,15 +3239,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3085,7 +3256,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:50 GMT + - Wed, 20 Jan 2021 06:36:15 GMT expires: - '-1' pragma: @@ -3121,15 +3292,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3138,7 +3309,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:52 GMT + - Wed, 20 Jan 2021 06:36:17 GMT expires: - '-1' pragma: @@ -3174,15 +3345,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3191,7 +3362,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:53 GMT + - Wed, 20 Jan 2021 06:36:18 GMT expires: - '-1' pragma: @@ -3227,15 +3398,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3244,7 +3415,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:56 GMT + - Wed, 20 Jan 2021 06:36:19 GMT expires: - '-1' pragma: @@ -3280,15 +3451,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3297,7 +3468,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:58 GMT + - Wed, 20 Jan 2021 06:36:21 GMT expires: - '-1' pragma: @@ -3333,15 +3504,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3350,7 +3521,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:45:59 GMT + - Wed, 20 Jan 2021 06:36:22 GMT expires: - '-1' pragma: @@ -3386,15 +3557,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3403,7 +3574,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:01 GMT + - Wed, 20 Jan 2021 06:36:23 GMT expires: - '-1' pragma: @@ -3439,15 +3610,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3456,7 +3627,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:03 GMT + - Wed, 20 Jan 2021 06:36:24 GMT expires: - '-1' pragma: @@ -3492,15 +3663,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3509,7 +3680,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:05 GMT + - Wed, 20 Jan 2021 06:36:26 GMT expires: - '-1' pragma: @@ -3545,15 +3716,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3562,7 +3733,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:06 GMT + - Wed, 20 Jan 2021 06:36:27 GMT expires: - '-1' pragma: @@ -3598,15 +3769,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3615,7 +3786,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:08 GMT + - Wed, 20 Jan 2021 06:36:28 GMT expires: - '-1' pragma: @@ -3651,15 +3822,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3668,7 +3839,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:10 GMT + - Wed, 20 Jan 2021 06:36:30 GMT expires: - '-1' pragma: @@ -3704,15 +3875,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3721,7 +3892,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:12 GMT + - Wed, 20 Jan 2021 06:36:31 GMT expires: - '-1' pragma: @@ -3757,15 +3928,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3774,7 +3945,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:13 GMT + - Wed, 20 Jan 2021 06:36:32 GMT expires: - '-1' pragma: @@ -3810,15 +3981,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3827,7 +3998,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:15 GMT + - Wed, 20 Jan 2021 06:36:34 GMT expires: - '-1' pragma: @@ -3863,15 +4034,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3880,7 +4051,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:17 GMT + - Wed, 20 Jan 2021 06:36:35 GMT expires: - '-1' pragma: @@ -3916,15 +4087,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3933,7 +4104,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:18 GMT + - Wed, 20 Jan 2021 06:36:36 GMT expires: - '-1' pragma: @@ -3969,15 +4140,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3986,7 +4157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:20 GMT + - Wed, 20 Jan 2021 06:36:37 GMT expires: - '-1' pragma: @@ -4022,15 +4193,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4039,7 +4210,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:22 GMT + - Wed, 20 Jan 2021 06:36:39 GMT expires: - '-1' pragma: @@ -4075,15 +4246,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4092,7 +4263,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:23 GMT + - Wed, 20 Jan 2021 06:36:40 GMT expires: - '-1' pragma: @@ -4128,15 +4299,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4145,7 +4316,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:25 GMT + - Wed, 20 Jan 2021 06:36:41 GMT expires: - '-1' pragma: @@ -4181,15 +4352,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4198,7 +4369,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:27 GMT + - Wed, 20 Jan 2021 06:36:43 GMT expires: - '-1' pragma: @@ -4234,15 +4405,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"InProgress","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4251,7 +4422,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:28 GMT + - Wed, 20 Jan 2021 06:36:44 GMT expires: - '-1' pragma: @@ -4287,24 +4458,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/dd97af30-fa6d-4e1b-b44f-465b4479da9e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","name":"dd97af30-fa6d-4e1b-b44f-465b4479da9e","status":"Succeeded","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"2020-12-18T10:44:57.7685521Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"473b8544-fe15-4bf8-8b35-69e1fbbd5536"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:30 GMT + - Wed, 20 Jan 2021 06:36:46 GMT expires: - '-1' pragma: @@ -4340,32 +4511,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/473b8544-fe15-4bf8-8b35-69e1fbbd5536?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/473b8544-fe15-4bf8-8b35-69e1fbbd5536","name":"473b8544-fe15-4bf8-8b35-69e1fbbd5536","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M31.8231037S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T10:44:57.7685521Z","endTime":"2020-12-18T10:46:29.5916558Z","activityId":"03138efd-411e-11eb-9ae6-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:33 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4375,7 +4544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '94' x-powered-by: - ASP.NET status: @@ -4389,30 +4558,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:33 GMT + - Wed, 20 Jan 2021 06:36:49 GMT expires: - '-1' pragma: @@ -4428,66 +4597,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '93' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm 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 + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/backup?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/48fc4403-1f88-47d5-a5e7-9af87be3f356?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 10:46:34 GMT + - Wed, 20 Jan 2021 06:36:50 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/48fc4403-1f88-47d5-a5e7-9af87be3f356?api-version=2016-12-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: + - '92' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4496,30 +4664,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/48fc4403-1f88-47d5-a5e7-9af87be3f356?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"48fc4403-1f88-47d5-a5e7-9af87be3f356","name":"48fc4403-1f88-47d5-a5e7-9af87be3f356","status":"Succeeded","startTime":"2020-12-18T10:46:34.8479699Z","endTime":"2020-12-18T10:46:34.8479699Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:35 GMT + - Wed, 20 Jan 2021 06:36:51 GMT expires: - '-1' pragma: @@ -4535,7 +4703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '91' x-powered-by: - ASP.NET status: @@ -4549,40 +4717,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.6835188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:37 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4592,7 +4756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '90' x-powered-by: - ASP.NET status: @@ -4606,40 +4770,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5.8431457S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:40 GMT + - Wed, 20 Jan 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: @@ -4649,7 +4809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '89' x-powered-by: - ASP.NET status: @@ -4663,40 +4823,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6.7538262S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:46:41 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4706,7 +4862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '88' x-powered-by: - ASP.NET status: @@ -4720,40 +4876,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37.7345963S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1157' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:47:12 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4763,7 +4915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '87' x-powered-by: - ASP.NET status: @@ -4777,40 +4929,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M10.0024512S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:47:44 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4820,7 +4968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '86' x-powered-by: - ASP.NET status: @@ -4834,40 +4982,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M40.7902186S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:48:16 GMT + - Wed, 20 Jan 2021 06:36: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: @@ -4877,7 +5021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '85' x-powered-by: - ASP.NET status: @@ -4891,40 +5035,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M11.6038388S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:48:46 GMT + - Wed, 20 Jan 2021 06: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: @@ -4934,7 +5074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '84' x-powered-by: - ASP.NET status: @@ -4948,40 +5088,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M42.5541457S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:49:17 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -4991,7 +5127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '83' x-powered-by: - ASP.NET status: @@ -5005,40 +5141,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M13.2499133S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:49:48 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -5048,7 +5180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '82' x-powered-by: - ASP.NET status: @@ -5062,40 +5194,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M44.0277771S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"InProgress","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 10:50:18 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -5105,7 +5233,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '81' x-powered-by: - ASP.NET status: @@ -5119,40 +5247,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/8a811074-b8c1-4808-8000-970d7616725e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M14.8039046S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"8a811074-b8c1-4808-8000-970d7616725e","name":"8a811074-b8c1-4808-8000-970d7616725e","status":"Succeeded","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"2021-01-20T06:35:33.0831937Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e3fd027f-9eec-4765-8331-ab4e4b106f1a"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 10:50:49 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -5162,7 +5286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '80' x-powered-by: - ASP.NET status: @@ -5176,33 +5300,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/e3fd027f-9eec-4765-8331-ab4e4b106f1a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M45.5842702S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/e3fd027f-9eec-4765-8331-ab4e4b106f1a","name":"e3fd027f-9eec-4765-8331-ab4e4b106f1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M31.5165613S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-20T06:35:33.0831937Z","endTime":"2021-01-20T06:37:04.599755Z","activityId":"a92ffd36-5ae9-11eb-86d9-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '969' content-type: - application/json date: - - Fri, 18 Dec 2020 10:51:20 GMT + - Wed, 20 Jan 2021 06:37:06 GMT expires: - '-1' pragma: @@ -5219,7 +5341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -5233,40 +5355,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M17.4332601S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","protectionStatus":"Healthy","protectionState":"IRPending","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy"}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '1968' content-type: - application/json date: - - Fri, 18 Dec 2020 10:51:52 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -5276,69 +5394,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-19T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/backup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M48.301922S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/738e1acb-d5ad-488a-a7ab-65a90695bf14?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1158' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 10:52:22 GMT + - Wed, 20 Jan 2021 06:37:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/738e1acb-d5ad-488a-a7ab-65a90695bf14?api-version=2020-10-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: - - '137' + 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: @@ -5347,40 +5462,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/738e1acb-d5ad-488a-a7ab-65a90695bf14?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M19.064175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"738e1acb-d5ad-488a-a7ab-65a90695bf14","name":"738e1acb-d5ad-488a-a7ab-65a90695bf14","status":"Succeeded","startTime":"2021-01-20T06:37:08.0535679Z","endTime":"2021-01-20T06:37:08.0535679Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ac604164-c7db-4ede-b69a-b18195672484"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 10:52:54 GMT + - Wed, 20 Jan 2021 06:37: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: @@ -5390,7 +5501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '149' x-powered-by: - ASP.NET status: @@ -5404,33 +5515,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M49.8572103S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1.2425871S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 10:53:24 GMT + - Wed, 20 Jan 2021 06:37:09 GMT expires: - '-1' pragma: @@ -5447,7 +5558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '149' x-powered-by: - ASP.NET status: @@ -5467,27 +5578,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M20.6657616S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.0902762S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 10:53:55 GMT + - Wed, 20 Jan 2021 06:37:09 GMT expires: - '-1' pragma: @@ -5504,7 +5615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '148' x-powered-by: - ASP.NET status: @@ -5524,27 +5635,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M51.4983398S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.8094747S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 10:54:26 GMT + - Wed, 20 Jan 2021 06:37:10 GMT expires: - '-1' pragma: @@ -5561,7 +5672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '147' x-powered-by: - ASP.NET status: @@ -5581,27 +5692,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M22.2268457S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33.4119823S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 10:54:56 GMT + - Wed, 20 Jan 2021 06:37:41 GMT expires: - '-1' pragma: @@ -5618,7 +5729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '146' x-powered-by: - ASP.NET status: @@ -5638,18 +5749,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M52.9608487S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M4.0871582S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5658,7 +5769,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:55:27 GMT + - Wed, 20 Jan 2021 06:38:13 GMT expires: - '-1' pragma: @@ -5675,7 +5786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '145' x-powered-by: - ASP.NET status: @@ -5695,27 +5806,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M23.6211769S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M35.5667709S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 10:55:58 GMT + - Wed, 20 Jan 2021 06:38:43 GMT expires: - '-1' pragma: @@ -5732,7 +5843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '144' x-powered-by: - ASP.NET status: @@ -5752,27 +5863,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M54.4707536S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M6.172053S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 10:56:29 GMT + - Wed, 20 Jan 2021 06:39:13 GMT expires: - '-1' pragma: @@ -5789,7 +5900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '143' x-powered-by: - ASP.NET status: @@ -5809,18 +5920,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M25.2470075S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M36.8617904S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5829,7 +5940,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:56:59 GMT + - Wed, 20 Jan 2021 06:39:45 GMT expires: - '-1' pragma: @@ -5846,7 +5957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '142' x-powered-by: - ASP.NET status: @@ -5866,27 +5977,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M56.0661189S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M7.764137S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 10:57:30 GMT + - Wed, 20 Jan 2021 06:40:15 GMT expires: - '-1' pragma: @@ -5903,7 +6014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '141' x-powered-by: - ASP.NET status: @@ -5923,18 +6034,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M26.7934222S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M38.4973557S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -5943,7 +6054,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:58:01 GMT + - Wed, 20 Jan 2021 06:40:46 GMT expires: - '-1' pragma: @@ -5960,7 +6071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '140' x-powered-by: - ASP.NET status: @@ -5980,27 +6091,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M57.5877958S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M9.1251463S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 10:58:32 GMT + - Wed, 20 Jan 2021 06:41:17 GMT expires: - '-1' pragma: @@ -6017,7 +6128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '139' x-powered-by: - ASP.NET status: @@ -6037,18 +6148,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M28.4708706S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M39.7797955S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6057,7 +6168,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:59:03 GMT + - Wed, 20 Jan 2021 06:41:47 GMT expires: - '-1' pragma: @@ -6074,7 +6185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '138' x-powered-by: - ASP.NET status: @@ -6094,18 +6205,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M59.4051833S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M10.4299581S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6114,7 +6225,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 10:59:34 GMT + - Wed, 20 Jan 2021 06:42:18 GMT expires: - '-1' pragma: @@ -6131,7 +6242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '137' x-powered-by: - ASP.NET status: @@ -6151,18 +6262,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M30.2629137S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M41.1488846S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6171,7 +6282,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:00:05 GMT + - Wed, 20 Jan 2021 06:42:49 GMT expires: - '-1' pragma: @@ -6188,7 +6299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '136' x-powered-by: - ASP.NET status: @@ -6208,27 +6319,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M1.122196S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M11.7138892S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:00:35 GMT + - Wed, 20 Jan 2021 06:43:19 GMT expires: - '-1' pragma: @@ -6245,7 +6356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '135' x-powered-by: - ASP.NET status: @@ -6265,18 +6376,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M31.9788915S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M42.5873232S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6285,7 +6396,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:01:07 GMT + - Wed, 20 Jan 2021 06:43:50 GMT expires: - '-1' pragma: @@ -6302,7 +6413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '134' x-powered-by: - ASP.NET status: @@ -6322,27 +6433,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M3.7842504S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M13.2109482S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:01:38 GMT + - Wed, 20 Jan 2021 06:44:20 GMT expires: - '-1' pragma: @@ -6359,7 +6470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '133' x-powered-by: - ASP.NET status: @@ -6379,27 +6490,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M34.6187848S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M43.8208663S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:02:09 GMT + - Wed, 20 Jan 2021 06:44:52 GMT expires: - '-1' pragma: @@ -6416,7 +6527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '132' x-powered-by: - ASP.NET status: @@ -6436,18 +6547,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M5.4359844S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M14.3497378S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6456,7 +6567,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:02:39 GMT + - Wed, 20 Jan 2021 06:45:22 GMT expires: - '-1' pragma: @@ -6473,7 +6584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '131' x-powered-by: - ASP.NET status: @@ -6493,27 +6604,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M36.3866116S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M44.9724631S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:03:11 GMT + - Wed, 20 Jan 2021 06:45:52 GMT expires: - '-1' pragma: @@ -6530,7 +6641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '130' x-powered-by: - ASP.NET status: @@ -6550,18 +6661,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M7.2963362S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M15.4904119S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6570,7 +6681,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:03:42 GMT + - Wed, 20 Jan 2021 06:46:23 GMT expires: - '-1' pragma: @@ -6587,7 +6698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '129' x-powered-by: - ASP.NET status: @@ -6607,27 +6718,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M38.2330636S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M46.1366939S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:04:13 GMT + - Wed, 20 Jan 2021 06:46:54 GMT expires: - '-1' pragma: @@ -6644,7 +6755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '128' x-powered-by: - ASP.NET status: @@ -6664,27 +6775,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M9.0915762S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M16.7562629S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:04:43 GMT + - Wed, 20 Jan 2021 06:47:24 GMT expires: - '-1' pragma: @@ -6701,7 +6812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '127' x-powered-by: - ASP.NET status: @@ -6721,18 +6832,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M40.0003712S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M47.3248408S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6741,7 +6852,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:05:15 GMT + - Wed, 20 Jan 2021 06:47:54 GMT expires: - '-1' pragma: @@ -6758,7 +6869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '126' x-powered-by: - ASP.NET status: @@ -6778,18 +6889,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M10.7681302S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M18.0060281S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6798,7 +6909,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:05:45 GMT + - Wed, 20 Jan 2021 06:48:26 GMT expires: - '-1' pragma: @@ -6815,7 +6926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '125' x-powered-by: - ASP.NET status: @@ -6835,18 +6946,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M41.6161268S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M48.5729246S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6855,7 +6966,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:06:16 GMT + - Wed, 20 Jan 2021 06:48:56 GMT expires: - '-1' pragma: @@ -6872,7 +6983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '124' x-powered-by: - ASP.NET status: @@ -6892,18 +7003,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M12.5103032S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M19.1237366S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6912,7 +7023,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:06:47 GMT + - Wed, 20 Jan 2021 06:49:26 GMT expires: - '-1' pragma: @@ -6929,7 +7040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '123' x-powered-by: - ASP.NET status: @@ -6949,18 +7060,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M43.2648128S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M49.7375275S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6969,7 +7080,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:07:18 GMT + - Wed, 20 Jan 2021 06:49:58 GMT expires: - '-1' pragma: @@ -6986,7 +7097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '122' x-powered-by: - ASP.NET status: @@ -7006,18 +7117,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M14.9648054S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M20.8004939S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7026,7 +7137,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:07:49 GMT + - Wed, 20 Jan 2021 06:50:29 GMT expires: - '-1' pragma: @@ -7043,7 +7154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '121' x-powered-by: - ASP.NET status: @@ -7063,18 +7174,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M45.7586106S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M51.6157396S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7083,7 +7194,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:08:20 GMT + - Wed, 20 Jan 2021 06:50:59 GMT expires: - '-1' pragma: @@ -7100,7 +7211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '120' x-powered-by: - ASP.NET status: @@ -7120,18 +7231,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M16.7166616S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M22.4687412S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7140,7 +7251,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:08:51 GMT + - Wed, 20 Jan 2021 06:51:30 GMT expires: - '-1' pragma: @@ -7157,7 +7268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '119' x-powered-by: - ASP.NET status: @@ -7177,18 +7288,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M47.4681567S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M53.0796682S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7197,7 +7308,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:09:22 GMT + - Wed, 20 Jan 2021 06:52:00 GMT expires: - '-1' pragma: @@ -7214,7 +7325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '118' x-powered-by: - ASP.NET status: @@ -7234,18 +7345,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M18.3440311S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M23.7448761S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7254,7 +7365,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:09:53 GMT + - Wed, 20 Jan 2021 06:52:32 GMT expires: - '-1' pragma: @@ -7271,7 +7382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '117' x-powered-by: - ASP.NET status: @@ -7291,18 +7402,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M49.1725412S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M54.5251975S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7311,7 +7422,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:10:24 GMT + - Wed, 20 Jan 2021 06:53:02 GMT expires: - '-1' pragma: @@ -7328,7 +7439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '116' x-powered-by: - ASP.NET status: @@ -7348,27 +7459,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M19.928501S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M25.1337044S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:10:54 GMT + - Wed, 20 Jan 2021 06:53:32 GMT expires: - '-1' pragma: @@ -7385,7 +7496,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '115' x-powered-by: - ASP.NET status: @@ -7405,18 +7516,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M52.1076907S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M55.7113032S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7425,7 +7536,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:11:26 GMT + - Wed, 20 Jan 2021 06:54:04 GMT expires: - '-1' pragma: @@ -7442,7 +7553,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '114' x-powered-by: - ASP.NET status: @@ -7462,27 +7573,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M22.9218956S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M26.385714S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:11:58 GMT + - Wed, 20 Jan 2021 06:54:34 GMT expires: - '-1' pragma: @@ -7499,7 +7610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '113' x-powered-by: - ASP.NET status: @@ -7519,18 +7630,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M53.7894367S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M56.9696537S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7539,7 +7650,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:12:28 GMT + - Wed, 20 Jan 2021 06:55:04 GMT expires: - '-1' pragma: @@ -7556,7 +7667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '112' x-powered-by: - ASP.NET status: @@ -7576,18 +7687,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M24.6445188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M27.6677185S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7596,7 +7707,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:12:59 GMT + - Wed, 20 Jan 2021 06:55:35 GMT expires: - '-1' pragma: @@ -7613,7 +7724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '111' x-powered-by: - ASP.NET status: @@ -7633,27 +7744,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M55.427508S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M58.3101068S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:13:30 GMT + - Wed, 20 Jan 2021 06:56:06 GMT expires: - '-1' pragma: @@ -7670,7 +7781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '110' x-powered-by: - ASP.NET status: @@ -7690,27 +7801,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M26.3392S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M28.9781905S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:14:01 GMT + - Wed, 20 Jan 2021 06:56:37 GMT expires: - '-1' pragma: @@ -7727,7 +7838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '109' x-powered-by: - ASP.NET status: @@ -7747,27 +7858,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M57.2153133S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M0.189077S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 11:14:32 GMT + - Wed, 20 Jan 2021 06:57:08 GMT expires: - '-1' pragma: @@ -7784,7 +7895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '108' x-powered-by: - ASP.NET status: @@ -7804,18 +7915,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M28.0477405S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M30.8078188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7824,7 +7935,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:15:02 GMT + - Wed, 20 Jan 2021 06:57:38 GMT expires: - '-1' pragma: @@ -7841,7 +7952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '107' x-powered-by: - ASP.NET status: @@ -7861,27 +7972,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M58.9024893S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M1.4656133S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:15:34 GMT + - Wed, 20 Jan 2021 06:58:09 GMT expires: - '-1' pragma: @@ -7898,7 +8009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '106' x-powered-by: - ASP.NET status: @@ -7918,18 +8029,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M29.7551644S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M32.0547816S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7938,7 +8049,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:16:04 GMT + - Wed, 20 Jan 2021 06:58:39 GMT expires: - '-1' pragma: @@ -7955,7 +8066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '105' x-powered-by: - ASP.NET status: @@ -7975,27 +8086,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M1.750704S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M2.6979972S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:16:36 GMT + - Wed, 20 Jan 2021 06:59:10 GMT expires: - '-1' pragma: @@ -8012,7 +8123,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '104' x-powered-by: - ASP.NET status: @@ -8032,18 +8143,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M32.6067164S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M33.3036638S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8052,7 +8163,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:17:06 GMT + - Wed, 20 Jan 2021 06:59:41 GMT expires: - '-1' pragma: @@ -8069,7 +8180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '103' x-powered-by: - ASP.NET status: @@ -8089,18 +8200,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M3.3534896S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M3.8728343S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8109,7 +8220,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:17:38 GMT + - Wed, 20 Jan 2021 07:00:11 GMT expires: - '-1' pragma: @@ -8126,7 +8237,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '102' x-powered-by: - ASP.NET status: @@ -8146,18 +8257,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M34.0551583S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M34.6243514S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8166,7 +8277,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:18:08 GMT + - Wed, 20 Jan 2021 07:00:42 GMT expires: - '-1' pragma: @@ -8183,7 +8294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '101' x-powered-by: - ASP.NET status: @@ -8203,18 +8314,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M4.8059854S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M5.2981731S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8223,7 +8334,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:18:39 GMT + - Wed, 20 Jan 2021 07:01:13 GMT expires: - '-1' pragma: @@ -8240,7 +8351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '100' x-powered-by: - ASP.NET status: @@ -8260,18 +8371,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M35.5681387S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M36.0268542S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8280,7 +8391,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:19:10 GMT + - Wed, 20 Jan 2021 07:01:44 GMT expires: - '-1' pragma: @@ -8297,7 +8408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '99' x-powered-by: - ASP.NET status: @@ -8317,18 +8428,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M6.3165391S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M6.5844434S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8337,7 +8448,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:19:41 GMT + - Wed, 20 Jan 2021 07:02:14 GMT expires: - '-1' pragma: @@ -8354,7 +8465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '98' x-powered-by: - ASP.NET status: @@ -8374,18 +8485,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M37.2991959S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M37.2046961S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8394,7 +8505,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:20:11 GMT + - Wed, 20 Jan 2021 07:02:45 GMT expires: - '-1' pragma: @@ -8411,7 +8522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '97' x-powered-by: - ASP.NET status: @@ -8431,18 +8542,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M8.2369717S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M8.1801744S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8451,7 +8562,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:20:43 GMT + - Wed, 20 Jan 2021 07:03:16 GMT expires: - '-1' pragma: @@ -8468,7 +8579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '96' x-powered-by: - ASP.NET status: @@ -8488,18 +8599,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M38.9546866S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M39.1110871S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8508,7 +8619,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:21:13 GMT + - Wed, 20 Jan 2021 07:03:47 GMT expires: - '-1' pragma: @@ -8525,7 +8636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '95' x-powered-by: - ASP.NET status: @@ -8545,27 +8656,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M10.7582524S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M9.9915472S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:21:46 GMT + - Wed, 20 Jan 2021 07:04:17 GMT expires: - '-1' pragma: @@ -8582,7 +8693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '94' x-powered-by: - ASP.NET status: @@ -8602,18 +8713,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M41.6663973S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M40.5895258S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8622,7 +8733,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:22:16 GMT + - Wed, 20 Jan 2021 07:04:48 GMT expires: - '-1' pragma: @@ -8639,7 +8750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '93' x-powered-by: - ASP.NET status: @@ -8659,18 +8770,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M12.5615205S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M11.1672596S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8679,7 +8790,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:22:47 GMT + - Wed, 20 Jan 2021 07:05:19 GMT expires: - '-1' pragma: @@ -8696,7 +8807,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '92' x-powered-by: - ASP.NET status: @@ -8716,18 +8827,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M43.3869034S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M41.7092376S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8736,7 +8847,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:23:19 GMT + - Wed, 20 Jan 2021 07:05:49 GMT expires: - '-1' pragma: @@ -8753,7 +8864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '91' x-powered-by: - ASP.NET status: @@ -8773,18 +8884,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M14.7933521S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M12.2605166S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8793,7 +8904,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:23:49 GMT + - Wed, 20 Jan 2021 07:06:21 GMT expires: - '-1' pragma: @@ -8810,7 +8921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '90' x-powered-by: - ASP.NET status: @@ -8830,27 +8941,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M45.6082271S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M43.282488S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:24:20 GMT + - Wed, 20 Jan 2021 07:06:51 GMT expires: - '-1' pragma: @@ -8867,7 +8978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '89' x-powered-by: - ASP.NET status: @@ -8887,18 +8998,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M16.4400673S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M13.9403295S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8907,7 +9018,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:24:51 GMT + - Wed, 20 Jan 2021 07:07:22 GMT expires: - '-1' pragma: @@ -8924,7 +9035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '88' x-powered-by: - ASP.NET status: @@ -8944,18 +9055,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M47.4117118S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M44.5778767S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8964,7 +9075,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:25:22 GMT + - Wed, 20 Jan 2021 07:07:52 GMT expires: - '-1' pragma: @@ -8981,7 +9092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '87' x-powered-by: - ASP.NET status: @@ -9001,18 +9112,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M18.2412743S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M15.2278025S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9021,7 +9132,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:25:53 GMT + - Wed, 20 Jan 2021 07:08:23 GMT expires: - '-1' pragma: @@ -9038,7 +9149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '86' x-powered-by: - ASP.NET status: @@ -9058,18 +9169,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M49.0578648S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M45.8029415S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9078,7 +9189,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:26:24 GMT + - Wed, 20 Jan 2021 07:08:53 GMT expires: - '-1' pragma: @@ -9095,7 +9206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '85' x-powered-by: - ASP.NET status: @@ -9115,27 +9226,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M21.0209208S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M16.381263S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:26:55 GMT + - Wed, 20 Jan 2021 07:09:24 GMT expires: - '-1' pragma: @@ -9152,7 +9263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '84' x-powered-by: - ASP.NET status: @@ -9172,18 +9283,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M51.8217049S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M47.2936618S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9192,7 +9303,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:27:27 GMT + - Wed, 20 Jan 2021 07:09:54 GMT expires: - '-1' pragma: @@ -9209,7 +9320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '83' x-powered-by: - ASP.NET status: @@ -9229,18 +9340,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M22.7802189S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M17.8164952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9249,7 +9360,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:27:57 GMT + - Wed, 20 Jan 2021 07:10:26 GMT expires: - '-1' pragma: @@ -9266,7 +9377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '82' x-powered-by: - ASP.NET status: @@ -9286,27 +9397,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M53.7501317S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M48.874564S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:28:28 GMT + - Wed, 20 Jan 2021 07:10:56 GMT expires: - '-1' pragma: @@ -9323,7 +9434,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '81' x-powered-by: - ASP.NET status: @@ -9343,18 +9454,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M24.5243709S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M19.5111243S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9363,7 +9474,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:28:59 GMT + - Wed, 20 Jan 2021 07:11:27 GMT expires: - '-1' pragma: @@ -9380,7 +9491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '80' x-powered-by: - ASP.NET status: @@ -9400,27 +9511,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M55.317082S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M50.1192857S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:29:30 GMT + - Wed, 20 Jan 2021 07:11:58 GMT expires: - '-1' pragma: @@ -9437,7 +9548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '79' x-powered-by: - ASP.NET status: @@ -9457,18 +9568,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M26.1369037S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M20.7222098S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9477,7 +9588,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:30:01 GMT + - Wed, 20 Jan 2021 07:12:28 GMT expires: - '-1' pragma: @@ -9494,7 +9605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '78' x-powered-by: - ASP.NET status: @@ -9514,27 +9625,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M57.026973S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M51.3656684S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:30:31 GMT + - Wed, 20 Jan 2021 07:12:58 GMT expires: - '-1' pragma: @@ -9551,7 +9662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '77' x-powered-by: - ASP.NET status: @@ -9571,18 +9682,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M27.9049557S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M22.0144677S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9591,7 +9702,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:31:02 GMT + - Wed, 20 Jan 2021 07:13:30 GMT expires: - '-1' pragma: @@ -9608,7 +9719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '76' x-powered-by: - ASP.NET status: @@ -9628,18 +9739,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M58.8308706S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M52.5780354S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9648,7 +9759,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:31:33 GMT + - Wed, 20 Jan 2021 07:14:01 GMT expires: - '-1' pragma: @@ -9665,7 +9776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '75' x-powered-by: - ASP.NET status: @@ -9685,18 +9796,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M30.6860143S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M24.1171792S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9705,7 +9816,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:32:05 GMT + - Wed, 20 Jan 2021 07:14:31 GMT expires: - '-1' pragma: @@ -9722,7 +9833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '74' x-powered-by: - ASP.NET status: @@ -9742,27 +9853,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M1.6300835S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M54.8043295S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:32:36 GMT + - Wed, 20 Jan 2021 07:15:02 GMT expires: - '-1' pragma: @@ -9779,7 +9890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '73' x-powered-by: - ASP.NET status: @@ -9799,27 +9910,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M32.4908871S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M25.405904S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:33:07 GMT + - Wed, 20 Jan 2021 07:15:33 GMT expires: - '-1' pragma: @@ -9836,7 +9947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '72' x-powered-by: - ASP.NET status: @@ -9856,27 +9967,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M3.3729455S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M56.0367803S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:33:38 GMT + - Wed, 20 Jan 2021 07:16:04 GMT expires: - '-1' pragma: @@ -9893,7 +10004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '71' x-powered-by: - ASP.NET status: @@ -9913,18 +10024,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M34.2305089S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M26.6876794S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9933,7 +10044,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:34:09 GMT + - Wed, 20 Jan 2021 07:16:34 GMT expires: - '-1' pragma: @@ -9950,7 +10061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '70' x-powered-by: - ASP.NET status: @@ -9970,27 +10081,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M5.1323147S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M57.2550895S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:34:39 GMT + - Wed, 20 Jan 2021 07:17:04 GMT expires: - '-1' pragma: @@ -10007,7 +10118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '69' x-powered-by: - ASP.NET status: @@ -10027,18 +10138,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M36.0907692S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M28.1367969S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10047,7 +10158,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:35:11 GMT + - Wed, 20 Jan 2021 07:17:36 GMT expires: - '-1' pragma: @@ -10064,7 +10175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '68' x-powered-by: - ASP.NET status: @@ -10084,27 +10195,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M7.0464781S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M58.7410269S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:35:42 GMT + - Wed, 20 Jan 2021 07:18:06 GMT expires: - '-1' pragma: @@ -10121,7 +10232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '67' x-powered-by: - ASP.NET status: @@ -10141,18 +10252,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M38.0558935S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M29.3460261S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10161,7 +10272,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:36:12 GMT + - Wed, 20 Jan 2021 07:18:37 GMT expires: - '-1' pragma: @@ -10178,7 +10289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '66' x-powered-by: - ASP.NET status: @@ -10198,27 +10309,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M8.9405089S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M59.9659434S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:36:44 GMT + - Wed, 20 Jan 2021 07:19:07 GMT expires: - '-1' pragma: @@ -10235,7 +10346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '65' x-powered-by: - ASP.NET status: @@ -10255,18 +10366,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M40.8002948S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M30.5848425S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10275,7 +10386,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:37:15 GMT + - Wed, 20 Jan 2021 07:19:38 GMT expires: - '-1' pragma: @@ -10292,7 +10403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '64' x-powered-by: - ASP.NET status: @@ -10312,18 +10423,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M11.561885S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M1.2146899S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10332,7 +10443,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:37:46 GMT + - Wed, 20 Jan 2021 07:20:09 GMT expires: - '-1' pragma: @@ -10349,7 +10460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '63' x-powered-by: - ASP.NET status: @@ -10369,18 +10480,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M42.3871522S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M31.7562375S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10389,7 +10500,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:38:17 GMT + - Wed, 20 Jan 2021 07:20:39 GMT expires: - '-1' pragma: @@ -10406,7 +10517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '62' x-powered-by: - ASP.NET status: @@ -10426,27 +10537,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M13.1700336S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M2.4207866S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:38:47 GMT + - Wed, 20 Jan 2021 07:21:10 GMT expires: - '-1' pragma: @@ -10463,7 +10574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '61' x-powered-by: - ASP.NET status: @@ -10483,18 +10594,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M43.8478559S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M33.0113867S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10503,7 +10614,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:39:19 GMT + - Wed, 20 Jan 2021 07:21:40 GMT expires: - '-1' pragma: @@ -10520,7 +10631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '60' x-powered-by: - ASP.NET status: @@ -10540,27 +10651,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M15.4768397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M3.5802198S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:39:49 GMT + - Wed, 20 Jan 2021 07:22:11 GMT expires: - '-1' pragma: @@ -10577,7 +10688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '59' x-powered-by: - ASP.NET status: @@ -10597,18 +10708,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M46.1733131S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M34.2304398S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10617,7 +10728,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:40:21 GMT + - Wed, 20 Jan 2021 07:22:42 GMT expires: - '-1' pragma: @@ -10634,7 +10745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '58' x-powered-by: - ASP.NET status: @@ -10654,27 +10765,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M16.8930007S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M4.8476559S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:40:51 GMT + - Wed, 20 Jan 2021 07:23:12 GMT expires: - '-1' pragma: @@ -10691,7 +10802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '57' x-powered-by: - ASP.NET status: @@ -10711,27 +10822,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M47.616886S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M35.4152617S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:41:22 GMT + - Wed, 20 Jan 2021 07:23:43 GMT expires: - '-1' pragma: @@ -10748,7 +10859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '56' x-powered-by: - ASP.NET status: @@ -10768,27 +10879,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT55M19.6376445S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M6.5118673S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:41:54 GMT + - Wed, 20 Jan 2021 07:24:14 GMT expires: - '-1' pragma: @@ -10805,7 +10916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '55' x-powered-by: - ASP.NET status: @@ -10825,18 +10936,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT55M50.6606426S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M37.1458484S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10845,7 +10956,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:42:25 GMT + - Wed, 20 Jan 2021 07:24:45 GMT expires: - '-1' pragma: @@ -10862,7 +10973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '54' x-powered-by: - ASP.NET status: @@ -10882,27 +10993,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M23.3620523S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M8.104105S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 11:42:57 GMT + - Wed, 20 Jan 2021 07:25:16 GMT expires: - '-1' pragma: @@ -10919,7 +11030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '53' x-powered-by: - ASP.NET status: @@ -10939,18 +11050,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M54.4454446S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M38.6241507S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10959,7 +11070,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:43:29 GMT + - Wed, 20 Jan 2021 07:25:46 GMT expires: - '-1' pragma: @@ -10976,7 +11087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '52' x-powered-by: - ASP.NET status: @@ -10996,27 +11107,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M25.2276828S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M9.5561168S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:44:00 GMT + - Wed, 20 Jan 2021 07:26:17 GMT expires: - '-1' pragma: @@ -11033,7 +11144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '51' x-powered-by: - ASP.NET status: @@ -11053,18 +11164,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M56.049175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M40.460029S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11073,7 +11184,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:44:30 GMT + - Wed, 20 Jan 2021 07:26:48 GMT expires: - '-1' pragma: @@ -11090,7 +11201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '50' x-powered-by: - ASP.NET status: @@ -11110,18 +11221,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M26.8339121S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M10.9970712S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11130,7 +11241,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:45:01 GMT + - Wed, 20 Jan 2021 07:27:18 GMT expires: - '-1' pragma: @@ -11147,7 +11258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '49' x-powered-by: - ASP.NET status: @@ -11167,18 +11278,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M57.6333411S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT50M41.5418468S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11187,7 +11298,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:45:32 GMT + - Wed, 20 Jan 2021 07:27:49 GMT expires: - '-1' pragma: @@ -11204,7 +11315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '48' x-powered-by: - ASP.NET status: @@ -11224,18 +11335,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M28.3883029S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M12.1693627S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11244,7 +11355,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:46:03 GMT + - Wed, 20 Jan 2021 07:28:20 GMT expires: - '-1' pragma: @@ -11261,7 +11372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '47' x-powered-by: - ASP.NET status: @@ -11281,18 +11392,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M59.1757328S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT51M42.9911701S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11301,7 +11412,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:46:33 GMT + - Wed, 20 Jan 2021 07:28:50 GMT expires: - '-1' pragma: @@ -11318,7 +11429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '46' x-powered-by: - ASP.NET status: @@ -11338,27 +11449,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H31.280294S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M13.6338524S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:47:06 GMT + - Wed, 20 Jan 2021 07:29:21 GMT expires: - '-1' pragma: @@ -11375,7 +11486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '45' x-powered-by: - ASP.NET status: @@ -11395,18 +11506,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M2.1804269S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT52M44.3166829S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11415,7 +11526,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:47:36 GMT + - Wed, 20 Jan 2021 07:29:52 GMT expires: - '-1' pragma: @@ -11432,7 +11543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '44' x-powered-by: - ASP.NET status: @@ -11452,27 +11563,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M33.3392952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M14.9530183S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:48:08 GMT + - Wed, 20 Jan 2021 07:30:22 GMT expires: - '-1' pragma: @@ -11489,7 +11600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '43' x-powered-by: - ASP.NET status: @@ -11509,18 +11620,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M4.2414342S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT53M47.7333814S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11529,7 +11640,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:48:39 GMT + - Wed, 20 Jan 2021 07:30:56 GMT expires: - '-1' pragma: @@ -11546,7 +11657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '42' x-powered-by: - ASP.NET status: @@ -11566,27 +11677,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M35.0419283S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M18.334686S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:49:10 GMT + - Wed, 20 Jan 2021 07:31:26 GMT expires: - '-1' pragma: @@ -11603,7 +11714,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '41' x-powered-by: - ASP.NET status: @@ -11623,18 +11734,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H3M5.9233767S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT54M49.0158175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11643,7 +11754,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:49:40 GMT + - Wed, 20 Jan 2021 07:31:56 GMT expires: - '-1' pragma: @@ -11660,7 +11771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '40' x-powered-by: - ASP.NET status: @@ -11680,27 +11791,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H3M36.7482066S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT55M19.6676363S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:50:11 GMT + - Wed, 20 Jan 2021 07:32:27 GMT expires: - '-1' pragma: @@ -11717,7 +11828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '39' x-powered-by: - ASP.NET status: @@ -11737,27 +11848,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M8.433806S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT55M50.4167251S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:50:43 GMT + - Wed, 20 Jan 2021 07:32:58 GMT expires: - '-1' pragma: @@ -11774,7 +11885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '38' x-powered-by: - ASP.NET status: @@ -11794,27 +11905,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M39.3232638S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M21.0448365S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:51:14 GMT + - Wed, 20 Jan 2021 07:33:29 GMT expires: - '-1' pragma: @@ -11831,7 +11942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '37' x-powered-by: - ASP.NET status: @@ -11851,27 +11962,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M10.1794183S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT56M51.7276854S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:51:45 GMT + - Wed, 20 Jan 2021 07:33:59 GMT expires: - '-1' pragma: @@ -11888,7 +11999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '36' x-powered-by: - ASP.NET status: @@ -11908,27 +12019,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M42.1870169S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M22.3857533S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:52:17 GMT + - Wed, 20 Jan 2021 07:34:30 GMT expires: - '-1' pragma: @@ -11945,7 +12056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '35' x-powered-by: - ASP.NET status: @@ -11965,27 +12076,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M13.1328813S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT57M53.055831S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:52:47 GMT + - Wed, 20 Jan 2021 07:35:01 GMT expires: - '-1' pragma: @@ -12002,7 +12113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '34' x-powered-by: - ASP.NET status: @@ -12022,27 +12133,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M43.8931728S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M23.685964S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:53:19 GMT + - Wed, 20 Jan 2021 07:35:31 GMT expires: - '-1' pragma: @@ -12059,7 +12170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '33' x-powered-by: - ASP.NET status: @@ -12079,27 +12190,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M19.5377244S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT58M54.306355S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:53:54 GMT + - Wed, 20 Jan 2021 07:36:02 GMT expires: - '-1' pragma: @@ -12116,7 +12227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '32' x-powered-by: - ASP.NET status: @@ -12136,27 +12247,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M51.1628025S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M24.9826651S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:54:26 GMT + - Wed, 20 Jan 2021 07:36:33 GMT expires: - '-1' pragma: @@ -12173,7 +12284,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '31' x-powered-by: - ASP.NET status: @@ -12193,27 +12304,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M21.9799877S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT59M55.531653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:54:56 GMT + - Wed, 20 Jan 2021 07:37:03 GMT expires: - '-1' pragma: @@ -12230,7 +12341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '30' x-powered-by: - ASP.NET status: @@ -12250,27 +12361,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M52.8122593S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H26.3826139S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:55:28 GMT + - Wed, 20 Jan 2021 07:37:33 GMT expires: - '-1' pragma: @@ -12287,7 +12398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '29' x-powered-by: - ASP.NET status: @@ -12307,27 +12418,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M23.6404555S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H57.0821721S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:55:58 GMT + - Wed, 20 Jan 2021 07:38:05 GMT expires: - '-1' pragma: @@ -12344,7 +12455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '28' x-powered-by: - ASP.NET status: @@ -12364,27 +12475,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M54.4647158S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M27.695415S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:56:29 GMT + - Wed, 20 Jan 2021 07:38:35 GMT expires: - '-1' pragma: @@ -12401,7 +12512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '27' x-powered-by: - ASP.NET status: @@ -12421,18 +12532,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M25.316088S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H1M58.3397499S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12441,7 +12552,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:57:00 GMT + - Wed, 20 Jan 2021 07:39:05 GMT expires: - '-1' pragma: @@ -12458,7 +12569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '26' x-powered-by: - ASP.NET status: @@ -12478,27 +12589,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M57.0283926S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M28.88783S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 11:57:32 GMT + - Wed, 20 Jan 2021 07:39:37 GMT expires: - '-1' pragma: @@ -12515,7 +12626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '25' x-powered-by: - ASP.NET status: @@ -12535,27 +12646,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M27.9698595S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H2M59.8956541S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 11:58:02 GMT + - Wed, 20 Jan 2021 07:40:08 GMT expires: - '-1' pragma: @@ -12572,7 +12683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '32' x-powered-by: - ASP.NET status: @@ -12592,27 +12703,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M58.8443752S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H3M30.6729842S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 11:58:34 GMT + - Wed, 20 Jan 2021 07:40:38 GMT expires: - '-1' pragma: @@ -12629,7 +12740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '31' x-powered-by: - ASP.NET status: @@ -12649,27 +12760,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H12M29.6070329S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M1.4472788S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 11:59:04 GMT + - Wed, 20 Jan 2021 07:41:09 GMT expires: - '-1' pragma: @@ -12686,7 +12797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '30' x-powered-by: - ASP.NET status: @@ -12706,18 +12817,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M0.3986975S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H4M32.1441293S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12726,7 +12837,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 11:59:35 GMT + - Wed, 20 Jan 2021 07:41:40 GMT expires: - '-1' pragma: @@ -12743,7 +12854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '29' x-powered-by: - ASP.NET status: @@ -12763,27 +12874,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M31.2731209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M2.7960527S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 12:00:06 GMT + - Wed, 20 Jan 2021 07:42:10 GMT expires: - '-1' pragma: @@ -12800,7 +12911,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '28' x-powered-by: - ASP.NET status: @@ -12820,18 +12931,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M2.1899637S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H5M33.3775919S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12840,7 +12951,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:00:37 GMT + - Wed, 20 Jan 2021 07:42:40 GMT expires: - '-1' pragma: @@ -12857,7 +12968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '27' x-powered-by: - ASP.NET status: @@ -12877,27 +12988,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M33.8541174S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M4.1466921S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 12:01:08 GMT + - Wed, 20 Jan 2021 07:43:12 GMT expires: - '-1' pragma: @@ -12914,7 +13025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '26' x-powered-by: - ASP.NET status: @@ -12934,18 +13045,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M4.6706056S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H6M34.7640953S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12954,7 +13065,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:01:39 GMT + - Wed, 20 Jan 2021 07:43:42 GMT expires: - '-1' pragma: @@ -12971,7 +13082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '25' x-powered-by: - ASP.NET status: @@ -12991,27 +13102,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M35.6702008S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M5.7879646S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 12:02:10 GMT + - Wed, 20 Jan 2021 07:44:13 GMT expires: - '-1' pragma: @@ -13028,7 +13139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '24' x-powered-by: - ASP.NET status: @@ -13048,18 +13159,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M7.6149661S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H7M37.0633042S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13068,7 +13179,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:02:42 GMT + - Wed, 20 Jan 2021 07:44:46 GMT expires: - '-1' pragma: @@ -13085,7 +13196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '23' x-powered-by: - ASP.NET status: @@ -13105,27 +13216,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M38.3894812S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M8.9040743S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 12:03:12 GMT + - Wed, 20 Jan 2021 07:45:16 GMT expires: - '-1' pragma: @@ -13142,7 +13253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '32' x-powered-by: - ASP.NET status: @@ -13162,18 +13273,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M9.2170736S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H8M39.5364558S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13182,7 +13293,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:03:44 GMT + - Wed, 20 Jan 2021 07:45:47 GMT expires: - '-1' pragma: @@ -13199,7 +13310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '31' x-powered-by: - ASP.NET status: @@ -13219,18 +13330,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M40.018341S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M10.1801991S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13239,7 +13350,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:04:14 GMT + - Wed, 20 Jan 2021 07:46:18 GMT expires: - '-1' pragma: @@ -13256,7 +13367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '30' x-powered-by: - ASP.NET status: @@ -13276,27 +13387,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M10.7951009S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H9M40.9472763S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 12:04:45 GMT + - Wed, 20 Jan 2021 07:46:48 GMT expires: - '-1' pragma: @@ -13313,7 +13424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '29' x-powered-by: - ASP.NET status: @@ -13333,18 +13444,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M41.5712217S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M11.5341328S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13353,7 +13464,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:05:16 GMT + - Wed, 20 Jan 2021 07:47:19 GMT expires: - '-1' pragma: @@ -13370,7 +13481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '28' x-powered-by: - ASP.NET status: @@ -13390,18 +13501,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M12.3375873S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H10M42.0780852S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13410,7 +13521,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:05:47 GMT + - Wed, 20 Jan 2021 07:47:50 GMT expires: - '-1' pragma: @@ -13427,7 +13538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '27' x-powered-by: - ASP.NET status: @@ -13447,18 +13558,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M43.1758445S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M12.7464629S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache @@ -13467,7 +13578,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:06:17 GMT + - Wed, 20 Jan 2021 07:48:20 GMT expires: - '-1' pragma: @@ -13484,7 +13595,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '26' x-powered-by: - ASP.NET status: @@ -13504,27 +13615,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M14.00276S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H11M43.2522249S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:06:49 GMT + - Wed, 20 Jan 2021 07:48:50 GMT expires: - '-1' pragma: @@ -13541,7 +13652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '25' x-powered-by: - ASP.NET status: @@ -13561,27 +13672,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M45.004149S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H12M14.0238296S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T10:46:34.8479699Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:07:19 GMT + - Wed, 20 Jan 2021 07:49:22 GMT expires: - '-1' pragma: @@ -13598,7 +13709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '24' x-powered-by: - ASP.NET status: @@ -13618,27 +13729,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","name":"a326e91e-86f0-4cf2-9a11-f7ebef8ec3a0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H21M13.2357995S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H12M44.6049113S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data - to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery - Point Expiry Time in UTC":"1/17/2021 12:00:00 AM","Backup Size":"21442 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T10:46:34.8479699Z","endTime":"2020-12-18T12:07:48.0837694Z","activityId":"4adee9da-411e-11eb-a8cd-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1225' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:07:52 GMT + - Wed, 20 Jan 2021 07:49:52 GMT expires: - '-1' pragma: @@ -13655,7 +13766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '23' x-powered-by: - ASP.NET status: @@ -13669,37 +13780,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M15.2730034S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:51 GMT + - Wed, 20 Jan 2021 07:50: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: @@ -13709,7 +13823,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '32' x-powered-by: - ASP.NET status: @@ -13723,36 +13837,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260973503948227715","name":"2260973503948227715","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T10:46:37.9564604Z","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H13M46.3688643S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1187' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:53 GMT + - Wed, 20 Jan 2021 07:50: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: @@ -13762,7 +13880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '31' x-powered-by: - ASP.NET status: @@ -13776,37 +13894,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M17.0730668S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:54 GMT + - Wed, 20 Jan 2021 07:51: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: @@ -13816,7 +13937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '30' x-powered-by: - ASP.NET status: @@ -13830,36 +13951,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H14M47.7339193S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:56 GMT + - Wed, 20 Jan 2021 07: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: @@ -13869,7 +13994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '29' x-powered-by: - ASP.NET status: @@ -13883,37 +14008,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M18.4997334S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:58 GMT + - Wed, 20 Jan 2021 07:52: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: @@ -13923,7 +14051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '28' x-powered-by: - ASP.NET status: @@ -13937,36 +14065,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H15M49.1412079S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:08:59 GMT + - Wed, 20 Jan 2021 07:52: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: @@ -13976,7 +14108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '27' x-powered-by: - ASP.NET status: @@ -13990,36 +14122,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260973503948227715?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260973503948227715","name":"2260973503948227715","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T10:46:37.9564604Z","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"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M19.8969863S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:01 GMT + - Wed, 20 Jan 2021 07:53: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: @@ -14029,7 +14165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '26' x-powered-by: - ASP.NET status: @@ -14043,36 +14179,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2020-12-18T10%3A43%3A14.2649768Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H16M50.5935425S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:04 GMT + - Wed, 20 Jan 2021 07:53: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: @@ -14081,6 +14221,10 @@ interactions: - 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 @@ -14092,37 +14236,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M21.191312S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:05 GMT + - Wed, 20 Jan 2021 07:54: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: @@ -14132,7 +14279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '24' x-powered-by: - ASP.NET status: @@ -14146,36 +14293,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H17M51.9189514S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:08 GMT + - Wed, 20 Jan 2021 07:55: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: @@ -14185,7 +14336,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '32' x-powered-by: - ASP.NET status: @@ -14199,37 +14350,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M22.5825821S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:09 GMT + - Wed, 20 Jan 2021 07:55: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: @@ -14239,7 +14393,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '31' x-powered-by: - ASP.NET status: @@ -14253,36 +14407,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H18M53.3073179S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:12 GMT + - Wed, 20 Jan 2021 07:56: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: @@ -14292,7 +14450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '30' x-powered-by: - ASP.NET status: @@ -14306,36 +14464,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260973503948227715?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260973503948227715","name":"2260973503948227715","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T10:46:37.9564604Z","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"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M23.9287018S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:13 GMT + - Wed, 20 Jan 2021 07:56: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: @@ -14345,7 +14507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '29' x-powered-by: - ASP.NET status: @@ -14359,36 +14521,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2020-12-18T10%3A43%3A14.2649768Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H19M55.6050779S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:16 GMT + - Wed, 20 Jan 2021 07: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: @@ -14397,6 +14563,10 @@ interactions: - 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 @@ -14408,45 +14578,55 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000007?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000007'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M26.5145371S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1161' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 12:09:17 GMT + - Wed, 20 Jan 2021 07:57: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -14455,36 +14635,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","name":"clitest000007","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T12:08:30.0403537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T12:08:29.9778728Z","primaryEndpoints":{"blob":"https://clitest000007.blob.core.windows.net/","queue":"https://clitest000007.queue.core.windows.net/","table":"https://clitest000007.table.core.windows.net/","file":"https://clitest000007.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H20M57.1659156S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-20T06:37:08.0535679Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:17 GMT + - Wed, 20 Jan 2021 07:58:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -14493,99 +14677,106 @@ interactions: - 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: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2260973503948227715", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004", - "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", - "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": - false}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive - Content-Length: - - '857' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260973503948227715/restore?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ac604164-c7db-4ede-b69a-b18195672484","name":"ac604164-c7db-4ede-b69a-b18195672484","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1H21M12.0809704S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000004","Recovery + Point Expiry Time in UTC":"2/19/2021 12:00:00 AM","Backup Size":"21442 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-20T06:37:08.0535679Z","endTime":"2021-01-20T07:58:20.1345383Z","activityId":"ea2ef50e-5ae9-11eb-97a1-c8f750f92764"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/2bfa8045-3c7f-4864-9d7a-7e83f723bb5f?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '1225' + content-type: + - application/json date: - - Fri, 18 Dec 2020 12:09:19 GMT + - Wed, 20 Jan 2021 07:58:35 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/2bfa8045-3c7f-4864-9d7a-7e83f723bb5f?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"crossRegionRestoreFlag": true}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup vault backup-properties set Connection: - keep-alive + Content-Length: + - '48' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - -g -n --cross-region-restore-flag User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/2bfa8045-3c7f-4864-9d7a-7e83f723bb5f?api-version=2016-12-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupstorageconfig/vaultstorageconfig?api-version=2018-12-20 response: body: - string: '{"id":"2bfa8045-3c7f-4864-9d7a-7e83f723bb5f","name":"2bfa8045-3c7f-4864-9d7a-7e83f723bb5f","status":"Succeeded","startTime":"2020-12-18T12:09:19.7684122Z","endTime":"2020-12-18T12:09:19.7684122Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ef237556-dfd5-4209-955f-b3885dd4cac5"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupstorageconfig/vaultstorageconfig","name":"vaultstorageconfig","type":"Microsoft.RecoveryServices/vaults/backupstorageconfig","properties":{"storageModelType":"GeoRedundant","storageType":"GeoRedundant","dedupState":"Disabled","xcoolState":"Disabled","storageTypeState":"Locked","crossRegionRestoreFlag":true}}' headers: cache-control: - no-cache content-length: - - '304' + - '534' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:21 GMT + - Wed, 20 Jan 2021 07:59:56 GMT expires: - '-1' pragma: @@ -14600,8 +14791,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -14615,40 +14806,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.0238448S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1240' + - '2343' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:23 GMT + - Wed, 20 Jan 2021 08:04: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: @@ -14672,40 +14860,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6.2449788S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '1240' + - '1187' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:26 GMT + - Wed, 20 Jan 2021 08:04: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: @@ -14729,40 +14913,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7.0374859S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1240' + - '2343' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:27 GMT + - Wed, 20 Jan 2021 08:05: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: @@ -14772,7 +14953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -14786,40 +14967,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37.7918966S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' headers: cache-control: - no-cache content-length: - - '1241' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 12:09:57 GMT + - Wed, 20 Jan 2021 08:05: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: @@ -14829,7 +15006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -14843,40 +15020,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M8.4611305S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1242' + - '2343' content-type: - application/json date: - - Fri, 18 Dec 2020 12:10:27 GMT + - Wed, 20 Jan 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: @@ -14886,7 +15060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -14900,40 +15074,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M39.2914446S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' headers: cache-control: - no-cache content-length: - - '1243' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 12:10:59 GMT + - Wed, 20 Jan 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: @@ -14943,7 +15113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -14957,41 +15127,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M10.0182031S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","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"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '1175' content-type: - application/json date: - - Fri, 18 Dec 2020 12:11:29 GMT + - Wed, 20 Jan 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: @@ -15001,7 +15166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -15015,41 +15180,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M40.7637244S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:09:19.7684122Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 12:12:00 GMT + - Wed, 20 Jan 2021 08:05: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: @@ -15058,10 +15218,6 @@ interactions: - 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 @@ -15073,44 +15229,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.6074917S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Config Blob Name":"config-clitestvmg4sc6-ef237556-dfd5-4209-955f-b3885dd4cac5.json","Config - Blob Container Name":"clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b/config-clitestvmg4sc6-ef237556-dfd5-4209-955f-b3885dd4cac5.json","Target - resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b/azuredeployef237556-dfd5-4209-955f-b3885dd4cac5.json"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T12:09:19.7684122Z","endTime":"2020-12-18T12:12:25.3759039Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1903' + - '2343' content-type: - application/json date: - - Fri, 18 Dec 2020 12:12:31 GMT + - Wed, 20 Jan 2021 08:05: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: @@ -15120,7 +15269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: @@ -15134,44 +15283,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/ef237556-dfd5-4209-955f-b3885dd4cac5","name":"ef237556-dfd5-4209-955f-b3885dd4cac5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.6074917S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Config Blob Name":"config-clitestvmg4sc6-ef237556-dfd5-4209-955f-b3885dd4cac5.json","Config - Blob Container Name":"clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b/config-clitestvmg4sc6-ef237556-dfd5-4209-955f-b3885dd4cac5.json","Target - resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b/azuredeployef237556-dfd5-4209-955f-b3885dd4cac5.json"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T12:09:19.7684122Z","endTime":"2020-12-18T12:12:25.3759039Z","activityId":"d21dc3ea-4129-11eb-836e-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' headers: cache-control: - no-cache content-length: - - '1903' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:02 GMT + - Wed, 20 Jan 2021 08:05: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: @@ -15195,43 +15336,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage blob exists + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - --account-name -c -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/4i6gmz5nlok2cazscripts","name":"4i6gmz5nlok2cazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T19:40:56.2222850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T19:40:56.2222850Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T19:40:56.1285864Z","primaryEndpoints":{"dfs":"https://4i6gmz5nlok2cazscripts.dfs.core.windows.net/","web":"https://4i6gmz5nlok2cazscripts.z13.web.core.windows.net/","blob":"https://4i6gmz5nlok2cazscripts.blob.core.windows.net/","queue":"https://4i6gmz5nlok2cazscripts.queue.core.windows.net/","table":"https://4i6gmz5nlok2cazscripts.table.core.windows.net/","file":"https://4i6gmz5nlok2cazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_subscription_level_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemog2rnpsfy","name":"armbuilddemog2rnpsfy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-17T22:38:58.5598337Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-17T22:38:58.5598337Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-17T22:38:58.4504517Z","primaryEndpoints":{"blob":"https://armbuilddemog2rnpsfy.blob.core.windows.net/","queue":"https://armbuilddemog2rnpsfy.queue.core.windows.net/","table":"https://armbuilddemog2rnpsfy.table.core.windows.net/","file":"https://armbuilddemog2rnpsfy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/cd2zky4hqprtqazscripts","name":"cd2zky4hqprtqazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T23:38:56.0153662Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T23:38:56.0153662Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T23:38:55.9372995Z","primaryEndpoints":{"dfs":"https://cd2zky4hqprtqazscripts.dfs.core.windows.net/","web":"https://cd2zky4hqprtqazscripts.z13.web.core.windows.net/","blob":"https://cd2zky4hqprtqazscripts.blob.core.windows.net/","queue":"https://cd2zky4hqprtqazscripts.queue.core.windows.net/","table":"https://cd2zky4hqprtqazscripts.table.core.windows.net/","file":"https://cd2zky4hqprtqazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/fiyvqecwxzhoeazscripts","name":"fiyvqecwxzhoeazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T21:02:55.0118805Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T21:02:55.0118805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-13T21:02:54.9493943Z","primaryEndpoints":{"dfs":"https://fiyvqecwxzhoeazscripts.dfs.core.windows.net/","web":"https://fiyvqecwxzhoeazscripts.z13.web.core.windows.net/","blob":"https://fiyvqecwxzhoeazscripts.blob.core.windows.net/","queue":"https://fiyvqecwxzhoeazscripts.queue.core.windows.net/","table":"https://fiyvqecwxzhoeazscripts.table.core.windows.net/","file":"https://fiyvqecwxzhoeazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/k22wclrgt5jvsazscripts","name":"k22wclrgt5jvsazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T20:59:13.0717595Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T20:59:13.0717595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-13T20:59:12.9936090Z","primaryEndpoints":{"dfs":"https://k22wclrgt5jvsazscripts.dfs.core.windows.net/","web":"https://k22wclrgt5jvsazscripts.z13.web.core.windows.net/","blob":"https://k22wclrgt5jvsazscripts.blob.core.windows.net/","queue":"https://k22wclrgt5jvsazscripts.queue.core.windows.net/","table":"https://k22wclrgt5jvsazscripts.table.core.windows.net/","file":"https://k22wclrgt5jvsazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/k3a2yb5gt77eqazscripts","name":"k3a2yb5gt77eqazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T21:05:09.4694619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-13T21:05:09.4694619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-13T21:05:09.3757042Z","primaryEndpoints":{"dfs":"https://k3a2yb5gt77eqazscripts.dfs.core.windows.net/","web":"https://k3a2yb5gt77eqazscripts.z13.web.core.windows.net/","blob":"https://k3a2yb5gt77eqazscripts.blob.core.windows.net/","queue":"https://k3a2yb5gt77eqazscripts.queue.core.windows.net/","table":"https://k3a2yb5gt77eqazscripts.table.core.windows.net/","file":"https://k3a2yb5gt77eqazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/lff5jayqeemiwazscripts","name":"lff5jayqeemiwazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:38:49.5175169Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:38:49.5175169Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T20:38:49.4237645Z","primaryEndpoints":{"dfs":"https://lff5jayqeemiwazscripts.dfs.core.windows.net/","web":"https://lff5jayqeemiwazscripts.z13.web.core.windows.net/","blob":"https://lff5jayqeemiwazscripts.blob.core.windows.net/","queue":"https://lff5jayqeemiwazscripts.queue.core.windows.net/","table":"https://lff5jayqeemiwazscripts.table.core.windows.net/","file":"https://lff5jayqeemiwazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldKVRG/providers/Microsoft.Storage/storageAccounts/ouldkvrgdiag","name":"ouldkvrgdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T22:10:49.6924558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-27T22:10:49.6924558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-27T22:10:49.6143508Z","primaryEndpoints":{"blob":"https://ouldkvrgdiag.blob.core.windows.net/","queue":"https://ouldkvrgdiag.queue.core.windows.net/","table":"https://ouldkvrgdiag.table.core.windows.net/","file":"https://ouldkvrgdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8973/providers/Microsoft.Storage/storageAccounts/ps1305","name":"ps1305","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:38:07.6760407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:38:07.6760407Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T21:38:07.5979258Z","primaryEndpoints":{"blob":"https://ps1305.blob.core.windows.net/","queue":"https://ps1305.queue.core.windows.net/","table":"https://ps1305.table.core.windows.net/","file":"https://ps1305.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7370/providers/Microsoft.Storage/storageAccounts/ps8157","name":"ps8157","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:40:09.3713967Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-14T21:40:09.3713967Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-14T21:40:09.2932086Z","primaryEndpoints":{"blob":"https://ps8157.blob.core.windows.net/","queue":"https://ps8157.queue.core.windows.net/","table":"https://ps8157.table.core.windows.net/","file":"https://ps8157.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/pu4tt6iq7w6y4azscripts","name":"pu4tt6iq7w6y4azscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:36:05.1574351Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:36:05.1574351Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T20:36:05.0636947Z","primaryEndpoints":{"dfs":"https://pu4tt6iq7w6y4azscripts.dfs.core.windows.net/","web":"https://pu4tt6iq7w6y4azscripts.z13.web.core.windows.net/","blob":"https://pu4tt6iq7w6y4azscripts.blob.core.windows.net/","queue":"https://pu4tt6iq7w6y4azscripts.queue.core.windows.net/","table":"https://pu4tt6iq7w6y4azscripts.table.core.windows.net/","file":"https://pu4tt6iq7w6y4azscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Storage/storageAccounts/querystringtesting","name":"querystringtesting","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-16T14:57:16.3908616Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-16T14:57:16.3908616Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-16T14:57:16.2814608Z","primaryEndpoints":{"dfs":"https://querystringtesting.dfs.core.windows.net/","web":"https://querystringtesting.z13.web.core.windows.net/","blob":"https://querystringtesting.blob.core.windows.net/","queue":"https://querystringtesting.queue.core.windows.net/","table":"https://querystringtesting.table.core.windows.net/","file":"https://querystringtesting.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://querystringtesting-secondary.dfs.core.windows.net/","web":"https://querystringtesting-secondary.z13.web.core.windows.net/","blob":"https://querystringtesting-secondary.blob.core.windows.net/","queue":"https://querystringtesting-secondary.queue.core.windows.net/","table":"https://querystringtesting-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/s52mrqm3f4alqazscripts","name":"s52mrqm3f4alqazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:10:24.1199711Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:10:24.1199711Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T20:10:24.0261417Z","primaryEndpoints":{"dfs":"https://s52mrqm3f4alqazscripts.dfs.core.windows.net/","web":"https://s52mrqm3f4alqazscripts.z13.web.core.windows.net/","blob":"https://s52mrqm3f4alqazscripts.blob.core.windows.net/","queue":"https://s52mrqm3f4alqazscripts.queue.core.windows.net/","table":"https://s52mrqm3f4alqazscripts.table.core.windows.net/","file":"https://s52mrqm3f4alqazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjwDeleteMe/providers/Microsoft.Storage/storageAccounts/storesvqoei6f3j2ii","name":"storesvqoei6f3j2ii","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:52:23.7148402Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T21:52:23.7148402Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-05T21:52:23.6367083Z","primaryEndpoints":{"dfs":"https://storesvqoei6f3j2ii.dfs.core.windows.net/","web":"https://storesvqoei6f3j2ii.z13.web.core.windows.net/","blob":"https://storesvqoei6f3j2ii.blob.core.windows.net/","queue":"https://storesvqoei6f3j2ii.queue.core.windows.net/","table":"https://storesvqoei6f3j2ii.table.core.windows.net/","file":"https://storesvqoei6f3j2ii.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tagsa060120","name":"tagsa060120","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-01T23:52:07.5401797Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-01T23:52:07.5401797Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-01T23:52:07.4151388Z","primaryEndpoints":{"blob":"https://tagsa060120.blob.core.windows.net/","queue":"https://tagsa060120.queue.core.windows.net/","table":"https://tagsa060120.table.core.windows.net/","file":"https://tagsa060120.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tagsa1","name":"tagsa1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-01T23:46:55.5232804Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-01T23:46:55.5232804Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-01T23:46:55.3983021Z","primaryEndpoints":{"blob":"https://tagsa1.blob.core.windows.net/","queue":"https://tagsa1.queue.core.windows.net/","table":"https://tagsa1.table.core.windows.net/","file":"https://tagsa1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Storage/storageAccounts/templatespecsclidiag","name":"templatespecsclidiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T15:20:46.7357492Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-13T15:20:46.7357492Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-13T15:20:46.6732658Z","primaryEndpoints":{"blob":"https://templatespecsclidiag.blob.core.windows.net/","queue":"https://templatespecsclidiag.queue.core.windows.net/","table":"https://templatespecsclidiag.table.core.windows.net/","file":"https://templatespecsclidiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TemplateSpecsCLI/providers/Microsoft.Storage/storageAccounts/uniquestorage001","name":"uniquestorage001","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-14T21:10:09.5389956Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-14T21:10:09.5389956Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-14T21:10:09.4452407Z","primaryEndpoints":{"blob":"https://uniquestorage001.blob.core.windows.net/","queue":"https://uniquestorage001.queue.core.windows.net/","table":"https://uniquestorage001.table.core.windows.net/","file":"https://uniquestorage001.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Gokul-TestRG4/providers/Microsoft.Storage/storageAccounts/zsgfl3y54h4roazscripts","name":"zsgfl3y54h4roazscripts","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:23:30.9993819Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-14T20:23:30.9993819Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-14T20:23:30.9212598Z","primaryEndpoints":{"dfs":"https://zsgfl3y54h4roazscripts.dfs.core.windows.net/","web":"https://zsgfl3y54h4roazscripts.z13.web.core.windows.net/","blob":"https://zsgfl3y54h4roazscripts.blob.core.windows.net/","queue":"https://zsgfl3y54h4roazscripts.queue.core.windows.net/","table":"https://zsgfl3y54h4roazscripts.table.core.windows.net/","file":"https://zsgfl3y54h4roazscripts.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldKVRG/providers/Microsoft.Storage/storageAccounts/ouldkvrgdiag631","name":"ouldkvrgdiag631","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-30T01:08:40.7742533Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-30T01:08:40.7742533Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-30T01:08:40.7273869Z","primaryEndpoints":{"blob":"https://ouldkvrgdiag631.blob.core.windows.net/","queue":"https://ouldkvrgdiag631.queue.core.windows.net/","table":"https://ouldkvrgdiag631.table.core.windows.net/","file":"https://ouldkvrgdiag631.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Ds-TestRg/providers/Microsoft.Storage/storageAccounts/rcp5ijt67ibzystandardsa","name":"rcp5ijt67ibzystandardsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T20:29:42.1186517Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T20:29:42.1186517Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T20:29:42.0248552Z","primaryEndpoints":{"dfs":"https://rcp5ijt67ibzystandardsa.dfs.core.windows.net/","web":"https://rcp5ijt67ibzystandardsa.z20.web.core.windows.net/","blob":"https://rcp5ijt67ibzystandardsa.blob.core.windows.net/","queue":"https://rcp5ijt67ibzystandardsa.queue.core.windows.net/","table":"https://rcp5ijt67ibzystandardsa.table.core.windows.net/","file":"https://rcp5ijt67ibzystandardsa.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcewe57qnnvlocbxnficoqcudycqc3rtg7klb22z7srrqqmxvlehzh4q6kj4teixqo/providers/Microsoft.Storage/storageAccounts/clistoragew4icjf","name":"clistoragew4icjf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-17T21:15:16.0132043Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-17T21:15:16.0132043Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-17T21:15:15.9194247Z","primaryEndpoints":{"dfs":"https://clistoragew4icjf.dfs.core.windows.net/","web":"https://clistoragew4icjf.z22.web.core.windows.net/","blob":"https://clistoragew4icjf.blob.core.windows.net/","queue":"https://clistoragew4icjf.queue.core.windows.net/","table":"https://clistoragew4icjf.table.core.windows.net/","file":"https://clistoragew4icjf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragew4icjf-secondary.dfs.core.windows.net/","web":"https://clistoragew4icjf-secondary.z22.web.core.windows.net/","blob":"https://clistoragew4icjf-secondary.blob.core.windows.net/","queue":"https://clistoragew4icjf-secondary.queue.core.windows.net/","table":"https://clistoragew4icjf-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.Storage/storageAccounts/issue127storageaccnt","name":"issue127storageaccnt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-01T15:12:10.5477604Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-01T15:12:10.5477604Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-01T15:12:10.4696141Z","primaryEndpoints":{"dfs":"https://issue127storageaccnt.dfs.core.windows.net/","web":"https://issue127storageaccnt.z22.web.core.windows.net/","blob":"https://issue127storageaccnt.blob.core.windows.net/","queue":"https://issue127storageaccnt.queue.core.windows.net/","table":"https://issue127storageaccnt.table.core.windows.net/","file":"https://issue127storageaccnt.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://issue127storageaccnt-secondary.dfs.core.windows.net/","web":"https://issue127storageaccnt-secondary.z22.web.core.windows.net/","blob":"https://issue127storageaccnt-secondary.blob.core.windows.net/","queue":"https://issue127storageaccnt-secondary.queue.core.windows.net/","table":"https://issue127storageaccnt-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Ds-TestRg/providers/Microsoft.Storage/storageAccounts/ngnd5lro6s4hwazscripts","name":"ngnd5lro6s4hwazscripts","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-27T20:05:24.1443076Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-27T20:05:24.1443076Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-27T20:05:24.0818298Z","primaryEndpoints":{"dfs":"https://ngnd5lro6s4hwazscripts.dfs.core.windows.net/","web":"https://ngnd5lro6s4hwazscripts.z22.web.core.windows.net/","blob":"https://ngnd5lro6s4hwazscripts.blob.core.windows.net/","queue":"https://ngnd5lro6s4hwazscripts.queue.core.windows.net/","table":"https://ngnd5lro6s4hwazscripts.table.core.windows.net/","file":"https://ngnd5lro6s4hwazscripts.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/OuldKVRG/providers/Microsoft.Storage/storageAccounts/ouldazstorageaccount","name":"ouldazstorageaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell","Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-19T20:13:49.9072161Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-19T20:13:49.9072161Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-19T20:13:49.8446731Z","primaryEndpoints":{"dfs":"https://ouldazstorageaccount.dfs.core.windows.net/","web":"https://ouldazstorageaccount.z22.web.core.windows.net/","blob":"https://ouldazstorageaccount.blob.core.windows.net/","queue":"https://ouldazstorageaccount.queue.core.windows.net/","table":"https://ouldazstorageaccount.table.core.windows.net/","file":"https://ouldazstorageaccount.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storageRG_Test/providers/Microsoft.Storage/storageAccounts/storageppbkfmj6idhfi","name":"storageppbkfmj6idhfi","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"largeFileSharesState":"Disabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-26T19:31:40.0851913Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-09-26T19:31:40.0851913Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-26T19:31:40.0227316Z","primaryEndpoints":{"dfs":"https://storageppbkfmj6idhfi.dfs.core.windows.net/","web":"https://storageppbkfmj6idhfi.z22.web.core.windows.net/","blob":"https://storageppbkfmj6idhfi.blob.core.windows.net/","queue":"https://storageppbkfmj6idhfi.queue.core.windows.net/","table":"https://storageppbkfmj6idhfi.table.core.windows.net/","file":"https://storageppbkfmj6idhfi.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","name":"clitest000007","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-18T12:08:30.0403537Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-18T12:08:30.0403537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T12:08:29.9778728Z","primaryEndpoints":{"blob":"https://clitest000007.blob.core.windows.net/","queue":"https://clitest000007.queue.core.windows.net/","table":"https://clitest000007.table.core.windows.net/","file":"https://clitest000007.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486/providers/Microsoft.Storage/storageAccounts/store6btd3ei6sqhcs","name":"store6btd3ei6sqhcs","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-09T00:14:52.9109348Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-09T00:14:52.9109348Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-09T00:14:52.8484136Z","primaryEndpoints":{"dfs":"https://store6btd3ei6sqhcs.dfs.core.windows.net/","web":"https://store6btd3ei6sqhcs.z5.web.core.windows.net/","blob":"https://store6btd3ei6sqhcs.blob.core.windows.net/","queue":"https://store6btd3ei6sqhcs.queue.core.windows.net/","table":"https://store6btd3ei6sqhcs.table.core.windows.net/","file":"https://store6btd3ei6sqhcs.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616/providers/Microsoft.Storage/storageAccounts/store6hxbah355sekm","name":"store6hxbah355sekm","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T23:40:25.5414749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T23:40:25.5414749Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T23:40:25.4633403Z","primaryEndpoints":{"dfs":"https://store6hxbah355sekm.dfs.core.windows.net/","web":"https://store6hxbah355sekm.z5.web.core.windows.net/","blob":"https://store6hxbah355sekm.blob.core.windows.net/","queue":"https://store6hxbah355sekm.queue.core.windows.net/","table":"https://store6hxbah355sekm.table.core.windows.net/","file":"https://store6hxbah355sekm.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5/providers/Microsoft.Storage/storageAccounts/storedydxa7ddiy7pu","name":"storedydxa7ddiy7pu","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"Blah":"Tataaaa","tag1":"tag2","TagAlong":"TagOver","tagname":"tagvalue"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T23:35:27.2123365Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-04-08T23:35:27.2123365Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-04-08T23:35:27.1497456Z","primaryEndpoints":{"dfs":"https://storedydxa7ddiy7pu.dfs.core.windows.net/","web":"https://storedydxa7ddiy7pu.z5.web.core.windows.net/","blob":"https://storedydxa7ddiy7pu.blob.core.windows.net/","queue":"https://storedydxa7ddiy7pu.queue.core.windows.net/","table":"https://storedydxa7ddiy7pu.table.core.windows.net/","file":"https://storedydxa7ddiy7pu.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dania-what-if/providers/Microsoft.Storage/storageAccounts/test343434","name":"test343434","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T17:23:39.4378518Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-15T17:23:39.4378518Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-15T17:23:39.3597481Z","primaryEndpoints":{"dfs":"https://test343434.dfs.core.windows.net/","web":"https://test343434.z5.web.core.windows.net/","blob":"https://test343434.blob.core.windows.net/","queue":"https://test343434.queue.core.windows.net/","table":"https://test343434.table.core.windows.net/","file":"https://test343434.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://test343434-secondary.dfs.core.windows.net/","web":"https://test343434-secondary.z5.web.core.windows.net/","blob":"https://test343434-secondary.blob.core.windows.net/","queue":"https://test343434-secondary.queue.core.windows.net/","table":"https://test343434-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-ps-test-01/providers/Microsoft.Storage/storageAccounts/testwhatifdelta","name":"testwhatifdelta","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-23T20:41:30.4179299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-23T20:41:30.4179299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-06-23T20:41:30.3397952Z","primaryEndpoints":{"dfs":"https://testwhatifdelta.dfs.core.windows.net/","web":"https://testwhatifdelta.z5.web.core.windows.net/","blob":"https://testwhatifdelta.blob.core.windows.net/","queue":"https://testwhatifdelta.queue.core.windows.net/","table":"https://testwhatifdelta.table.core.windows.net/","file":"https://testwhatifdelta.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shenglol-what-if-usage/providers/Microsoft.Storage/storageAccounts/whatifusagestorage","name":"whatifusagestorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-30T19:08:04.2656695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-30T19:08:04.2656695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2020-06-30T19:08:04.1875312Z","primaryEndpoints":{"dfs":"https://whatifusagestorage.dfs.core.windows.net/","web":"https://whatifusagestorage.z5.web.core.windows.net/","blob":"https://whatifusagestorage.blob.core.windows.net/","queue":"https://whatifusagestorage.queue.core.windows.net/","table":"https://whatifusagestorage.table.core.windows.net/","file":"https://whatifusagestorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://whatifusagestorage-secondary.dfs.core.windows.net/","web":"https://whatifusagestorage-secondary.z5.web.core.windows.net/","blob":"https://whatifusagestorage-secondary.blob.core.windows.net/","queue":"https://whatifusagestorage-secondary.queue.core.windows.net/","table":"https://whatifusagestorage-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '44570' + - '2343' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 12:13:04 GMT + - Wed, 20 Jan 2021 08:05: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-original-request-ids: - - 8fe684c1-e798-48ed-89a0-5a03d5cf9fa5 - - ee61e806-bb56-46c5-a7dd-bdd143c3e138 - - 67cc6f11-c4da-4607-9893-6d1697fe2c89 - - dd7a9972-6b10-4f49-bb8f-ed5af2a19c61 - - f8fd1c5c-d988-4f7e-955e-e9d62a3ced7d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -15243,35 +15390,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage blob exists + - backup restore restore-disks Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --account-name -c -n + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.6 (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/clitest000007/listKeys?api-version=2019-06-01&$expand=kerb + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' headers: cache-control: - no-cache content-length: - - '288' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:04 GMT + - Wed, 20 Jan 2021 08:05:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -15281,57 +15429,62 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '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-disks Connection: - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.6; Windows 10) AZURECLI/2.16.0 - x-ms-date: - - Fri, 18 Dec 2020 12:13:04 GMT - x-ms-version: - - '2018-11-09' - method: HEAD - uri: https://clitest000007.blob.core.windows.net/clitestvmg4sc6-e2cfcad6d5db4afbbb05617f392f607b/config-clitestvmg4sc6-ef237556-dfd5-4209-955f-b3885dd4cac5.json + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","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"}}' headers: - accept-ranges: - - bytes + cache-control: + - no-cache content-length: - - '4096' + - '1175' content-type: - - application/octet-stream + - application/json date: - - Fri, 18 Dec 2020 12:13:05 GMT - etag: - - '"0x8D8A34E2E285641"' - last-modified: - - Fri, 18 Dec 2020 12:12:25 GMT + - Wed, 20 Jan 2021 08:05:06 GMT + expires: + - '-1' + pragma: + - no-cache server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-sequence-number: - - '0' - x-ms-blob-type: - - PageBlob - x-ms-creation-time: - - Fri, 18 Dec 2020 12:12:24 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-meta-configblobsize: - - '4096' - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-11-09' + - Microsoft-IIS/10.0 + strict-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 @@ -15347,27 +15500,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '2495' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:07 GMT + - Wed, 20 Jan 2021 08:05:07 GMT expires: - '-1' pragma: @@ -15382,51 +15534,7977 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000007?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000007'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Jan 2021 08:05:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","name":"clitest000007","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-20T07:59:10.1489647Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-20T07:59:10.0707872Z","primaryEndpoints":{"blob":"https://clitest000007.blob.core.windows.net/","queue":"https://clitest000007.queue.core.windows.net/","table":"https://clitest000007.table.core.windows.net/","file":"https://clitest000007.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '974' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "2260930823768774574", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004", + "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", + "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + Content-Length: + - '857' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574/restore?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/5c088494-542d-42dc-ae51-03f7688cba10?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 20 Jan 2021 08:05:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/5c088494-542d-42dc-ae51-03f7688cba10?api-version=2020-10-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 restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/5c088494-542d-42dc-ae51-03f7688cba10?api-version=2020-10-01 + response: + body: + string: '{"id":"5c088494-542d-42dc-ae51-03f7688cba10","name":"5c088494-542d-42dc-ae51-03f7688cba10","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/5c088494-542d-42dc-ae51-03f7688cba10?api-version=2020-10-01 + response: + body: + string: '{"id":"5c088494-542d-42dc-ae51-03f7688cba10","name":"5c088494-542d-42dc-ae51-03f7688cba10","status":"Succeeded","startTime":"2021-01-20T08:05:08.5950312Z","endTime":"2021-01-20T08:05:08.5950312Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"23ff20b6-72b3-4776-806e-b7a97928c384"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r -t --storage-account --restore-to-staging-storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.0041161S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1300' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.6420596S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1300' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.3039824S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1300' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33.8697245S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1301' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:05: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M4.5896285S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1302' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M35.1316922S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M5.6811006S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1393' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M36.2213701S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:05:08.5950312Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1394' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:07: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.966059S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-23ff20b6-72b3-4776-806e-b7a97928c384.json","Config + Blob Container Name":"clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b/config-clitestvmhtb5m-23ff20b6-72b3-4776-806e-b7a97928c384.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b/azuredeploy23ff20b6-72b3-4776-806e-b7a97928c384.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-20T08:05:08.5950312Z","endTime":"2021-01-20T08:08:14.5610902Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1962' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/23ff20b6-72b3-4776-806e-b7a97928c384","name":"23ff20b6-72b3-4776-806e-b7a97928c384","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M5.966059S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-23ff20b6-72b3-4776-806e-b7a97928c384.json","Config + Blob Container Name":"clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b/config-clitestvmhtb5m-23ff20b6-72b3-4776-806e-b7a97928c384.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b/azuredeploy23ff20b6-72b3-4776-806e-b7a97928c384.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-20T08:05:08.5950312Z","endTime":"2021-01-20T08:08:14.5610902Z","activityId":"3383b4c2-5af6-11eb-9c2b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1962' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08: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: + - '44' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob exists + Connection: + - keep-alive + ParameterSetName: + - --account-name -c -n + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.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/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + response: + body: + string: "{\"value\":[{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603eastus\",\"name\":\"f81603eastus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.2322822Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.2322822Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-14T05:38:26.0015491Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603eastus.blob.core.windows.net/\",\"queue\":\"https://f81603eastus.queue.core.windows.net/\",\"table\":\"https://f81603eastus.table.core.windows.net/\",\"file\":\"https://f81603eastus.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs1\",\"name\":\"hiagaafs1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2099\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-13T15:08:15.5935837Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-13T15:08:15.5935837Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-13T15:08:15.5310274Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs1.dfs.core.windows.net/\",\"web\":\"https://hiagaafs1.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs1.blob.core.windows.net/\",\"queue\":\"https://hiagaafs1.queue.core.windows.net/\",\"table\":\"https://hiagaafs1.table.core.windows.net/\",\"file\":\"https://hiagaafs1.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs1-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs1-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs1-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs1-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs2\",\"name\":\"hiagaafs2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\" + Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"12-2099\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-13T15:11:51.6492780Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-13T15:11:51.6492780Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-13T15:11:51.5554903Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs2.dfs.core.windows.net/\",\"web\":\"https://hiagaafs2.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs2.blob.core.windows.net/\",\"queue\":\"https://hiagaafs2.queue.core.windows.net/\",\"table\":\"https://hiagaafs2.table.core.windows.net/\",\"file\":\"https://hiagaafs2.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs2-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs2-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs2-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs2-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs23\",\"name\":\"hiagaafs23\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"10-2020\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-20T10:35:09.5804653Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-20T10:35:09.5804653Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-20T10:35:09.4866966Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs23.dfs.core.windows.net/\",\"web\":\"https://hiagaafs23.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs23.blob.core.windows.net/\",\"queue\":\"https://hiagaafs23.queue.core.windows.net/\",\"table\":\"https://hiagaafs23.table.core.windows.net/\",\"file\":\"https://hiagaafs23.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs23-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs23-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs23-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs23-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs23-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs3\",\"name\":\"hiagaafs3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-14T03:01:51.9141220Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-14T03:01:51.9141220Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-14T03:01:51.8203488Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs3.dfs.core.windows.net/\",\"web\":\"https://hiagaafs3.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs3.blob.core.windows.net/\",\"queue\":\"https://hiagaafs3.queue.core.windows.net/\",\"table\":\"https://hiagaafs3.table.core.windows.net/\",\"file\":\"https://hiagaafs3.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs3-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs3-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs3-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs3-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs3-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs4\",\"name\":\"hiagaafs4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-15T07:23:34.0274090Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-15T07:23:34.0274090Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-15T07:23:33.8242864Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs4.dfs.core.windows.net/\",\"web\":\"https://hiagaafs4.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs4.blob.core.windows.net/\",\"queue\":\"https://hiagaafs4.queue.core.windows.net/\",\"table\":\"https://hiagaafs4.table.core.windows.net/\",\"file\":\"https://hiagaafs4.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs4-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs4-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs4-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs4-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs4-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs5\",\"name\":\"hiagaafs5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-15T08:12:07.5443086Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-15T08:12:07.5443086Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-15T08:12:07.4817819Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs5.dfs.core.windows.net/\",\"web\":\"https://hiagaafs5.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs5.blob.core.windows.net/\",\"queue\":\"https://hiagaafs5.queue.core.windows.net/\",\"table\":\"https://hiagaafs5.table.core.windows.net/\",\"file\":\"https://hiagaafs5.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs5-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs5-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs5-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs5-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs5-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagaafs6\",\"name\":\"hiagaafs6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-20T11:51:01.3125539Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-20T11:51:01.3125539Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-20T11:51:01.2188062Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagaafs6.dfs.core.windows.net/\",\"web\":\"https://hiagaafs6.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs6.blob.core.windows.net/\",\"queue\":\"https://hiagaafs6.queue.core.windows.net/\",\"table\":\"https://hiagaafs6.table.core.windows.net/\",\"file\":\"https://hiagaafs6.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagaafs6-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagaafs6-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagaafs6-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagaafs6-secondary.queue.core.windows.net/\",\"table\":\"https://hiagaafs6-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagasa1\",\"name\":\"hiagasa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\" + Yes\",\" Owner\":\"hiaga\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-22T09:21:20.2384161Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-22T09:21:20.2384161Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-06-22T09:21:20.1603204Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagasa1.dfs.core.windows.net/\",\"web\":\"https://hiagasa1.z13.web.core.windows.net/\",\"blob\":\"https://hiagasa1.blob.core.windows.net/\",\"queue\":\"https://hiagasa1.queue.core.windows.net/\",\"table\":\"https://hiagasa1.table.core.windows.net/\",\"file\":\"https://hiagasa1.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagasa1-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagasa1-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagasa1-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagasa1-secondary.queue.core.windows.net/\",\"table\":\"https://hiagasa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL-rg/providers/Microsoft.Storage/storageAccounts/hiagasqlsa\",\"name\":\"hiagasqlsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"08-2021\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_0\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-25T03:37:17.9082304Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-25T03:37:17.9082304Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-25T03:37:17.8144858Z\",\"primaryEndpoints\":{\"dfs\":\"https://hiagasqlsa.dfs.core.windows.net/\",\"web\":\"https://hiagasqlsa.z13.web.core.windows.net/\",\"blob\":\"https://hiagasqlsa.blob.core.windows.net/\",\"queue\":\"https://hiagasqlsa.queue.core.windows.net/\",\"table\":\"https://hiagasqlsa.table.core.windows.net/\",\"file\":\"https://hiagasqlsa.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://hiagasqlsa-secondary.dfs.core.windows.net/\",\"web\":\"https://hiagasqlsa-secondary.z13.web.core.windows.net/\",\"blob\":\"https://hiagasqlsa-secondary.blob.core.windows.net/\",\"queue\":\"https://hiagasqlsa-secondary.queue.core.windows.net/\",\"table\":\"https://hiagasqlsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagawusrgdiag\",\"name\":\"hiagawusrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"01-2025\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-14T11:58:09.9595160Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-06-14T11:58:09.9595160Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-06-14T11:58:09.8814528Z\",\"primaryEndpoints\":{\"blob\":\"https://hiagawusrgdiag.blob.core.windows.net/\",\"queue\":\"https://hiagawusrgdiag.queue.core.windows.net/\",\"table\":\"https://hiagawusrgdiag.table.core.windows.net/\",\"file\":\"https://hiagawusrgdiag.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603westus\",\"name\":\"f81603westus\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.0212974Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.0212974Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-14T05:38:24.4913798Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603westus.blob.core.windows.net/\",\"queue\":\"https://f81603westus.queue.core.windows.net/\",\"table\":\"https://f81603westus.table.core.windows.net/\",\"file\":\"https://f81603westus.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Storage/storageAccounts/hiagawusrgdiag230\",\"name\":\"hiagawusrgdiag230\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"hiaga\",\"DeleteBy\":\"09-2020\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-10T16:15:24.3407516Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-08-10T16:15:24.3407516Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-08-10T16:15:24.2782930Z\",\"primaryEndpoints\":{\"blob\":\"https://hiagawusrgdiag230.blob.core.windows.net/\",\"queue\":\"https://hiagawusrgdiag230.queue.core.windows.net/\",\"table\":\"https://hiagawusrgdiag230.table.core.windows.net/\",\"file\":\"https://hiagawusrgdiag230.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranisa1\",\"name\":\"mkheranisa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-04T08:01:52.9298780Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-04T08:01:52.9298780Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-04T08:01:52.8673903Z\",\"primaryEndpoints\":{\"dfs\":\"https://mkheranisa1.dfs.core.windows.net/\",\"web\":\"https://mkheranisa1.z22.web.core.windows.net/\",\"blob\":\"https://mkheranisa1.blob.core.windows.net/\",\"queue\":\"https://mkheranisa1.queue.core.windows.net/\",\"table\":\"https://mkheranisa1.table.core.windows.net/\",\"file\":\"https://mkheranisa1.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://mkheranisa1-secondary.dfs.core.windows.net/\",\"web\":\"https://mkheranisa1-secondary.z22.web.core.windows.net/\",\"blob\":\"https://mkheranisa1-secondary.blob.core.windows.net/\",\"queue\":\"https://mkheranisa1-secondary.queue.core.windows.net/\",\"table\":\"https://mkheranisa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvt\",\"name\":\"psbvt\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"Owner\":\"sarath\",\"Purpose\":\" + Testing\",\"DeleteBy\":\"01-2025\",\"MAB Used \":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-27T06:13:26.7106620Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-27T06:13:26.7106620Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-01-27T06:13:26.6325588Z\",\"primaryEndpoints\":{\"dfs\":\"https://psbvt.dfs.core.windows.net/\",\"web\":\"https://psbvt.z22.web.core.windows.net/\",\"blob\":\"https://psbvt.blob.core.windows.net/\",\"queue\":\"https://psbvt.queue.core.windows.net/\",\"table\":\"https://psbvt.table.core.windows.net/\",\"file\":\"https://psbvt.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://psbvt-secondary.dfs.core.windows.net/\",\"web\":\"https://psbvt-secondary.z22.web.core.windows.net/\",\"blob\":\"https://psbvt-secondary.blob.core.windows.net/\",\"queue\":\"https://psbvt-secondary.queue.core.windows.net/\",\"table\":\"https://psbvt-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrestore/providers/Microsoft.Storage/storageAccounts/psbvtrestore\",\"name\":\"psbvtrestore\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{\"MABUsed\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.0681830Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.0681830Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-06-28T15:05:27.6814703Z\",\"primaryEndpoints\":{\"blob\":\"https://psbvtrestore.blob.core.windows.net/\",\"queue\":\"https://psbvtrestore.queue.core.windows.net/\",\"table\":\"https://psbvtrestore.table.core.windows.net/\",\"file\":\"https://psbvtrestore.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603westeurope\",\"name\":\"f81603westeurope\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-14T18:49:29.9230729Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-12-14T18:49:29.9230729Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-03T13:24:10.4835441Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603westeurope.blob.core.windows.net/\",\"queue\":\"https://f81603westeurope.queue.core.windows.net/\",\"table\":\"https://f81603westeurope.table.core.windows.net/\",\"file\":\"https://f81603westeurope.file.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemasaeastasia\",\"name\":\"akneemasaeastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Ye\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-04T09:22:26.6152311Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-04T09:22:26.6152311Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-04T09:22:26.5527291Z\",\"primaryEndpoints\":{\"dfs\":\"https://akneemasaeastasia.dfs.core.windows.net/\",\"web\":\"https://akneemasaeastasia.z7.web.core.windows.net/\",\"blob\":\"https://akneemasaeastasia.blob.core.windows.net/\",\"queue\":\"https://akneemasaeastasia.queue.core.windows.net/\",\"table\":\"https://akneemasaeastasia.table.core.windows.net/\",\"file\":\"https://akneemasaeastasia.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000008\",\"name\":\"clitest000008\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-20T07:59:36.8270612Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-20T07:59:36.8270612Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-20T07:59:36.7489401Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest000008.blob.core.windows.net/\",\"queue\":\"https://clitest000008.queue.core.windows.net/\",\"table\":\"https://clitest000008.table.core.windows.net/\",\"file\":\"https://clitest000008.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa1\",\"name\":\"afstbackuptestsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\" + Owner\":\"akkanase\",\"Purpose\":\"\_Testing\",\"Delete By\":\"12-2020\"},\"properties\":{\"privateEndpointConnections\":[],\"largeFileSharesState\":\"Disabled\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-31T13:57:22.4320003Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-03-31T13:57:22.4320003Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-03-31T13:57:22.3694867Z\",\"primaryEndpoints\":{\"dfs\":\"https://afstbackuptestsa1.dfs.core.windows.net/\",\"web\":\"https://afstbackuptestsa1.z23.web.core.windows.net/\",\"blob\":\"https://afstbackuptestsa1.blob.core.windows.net/\",\"queue\":\"https://afstbackuptestsa1.queue.core.windows.net/\",\"table\":\"https://afstbackuptestsa1.table.core.windows.net/\",\"file\":\"https://afstbackuptestsa1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akanaseTest/providers/Microsoft.Storage/storageAccounts/akanasetestdiag\",\"name\":\"akanasetestdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"akkanase\",\"MAB + Used\":\"yes\",\"DeleteBy\":\"01-2021\",\"Purpose\":\" Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-21T09:27:21.0185553Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-21T09:27:21.0185553Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-21T09:27:20.9717394Z\",\"primaryEndpoints\":{\"blob\":\"https://akanasetestdiag.blob.core.windows.net/\",\"queue\":\"https://akanasetestdiag.queue.core.windows.net/\",\"table\":\"https://akanasetestdiag.table.core.windows.net/\",\"file\":\"https://akanasetestdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneemacli/providers/Microsoft.Storage/storageAccounts/akneemasasoutheastasia\",\"name\":\"akneemasasoutheastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"akneema\",\"Purpose\":\"Testing\",\"DeleteBy\":\"12-9999\",\"MABUsed\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"allowSharedKeyAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-05T06:30:11.2988809Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-05T06:30:11.2988809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-05T06:30:11.2207644Z\",\"primaryEndpoints\":{\"dfs\":\"https://akneemasasoutheastasia.dfs.core.windows.net/\",\"web\":\"https://akneemasasoutheastasia.z23.web.core.windows.net/\",\"blob\":\"https://akneemasasoutheastasia.blob.core.windows.net/\",\"queue\":\"https://akneemasasoutheastasia.queue.core.windows.net/\",\"table\":\"https://akneemasasoutheastasia.table.core.windows.net/\",\"file\":\"https://akneemasasoutheastasia.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Storage/storageAccounts/akneemastorageaccountcrr\",\"name\":\"akneemastorageaccountcrr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"akneema\",\"DeleteBy\":\"12-9999\",\"Purpose\":\"Testing\"},\"properties\":{\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-15T11:15:57.9297171Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-12-15T11:15:57.9297171Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-12-15T11:15:57.8515770Z\",\"primaryEndpoints\":{\"dfs\":\"https://akneemastorageaccountcrr.dfs.core.windows.net/\",\"web\":\"https://akneemastorageaccountcrr.z23.web.core.windows.net/\",\"blob\":\"https://akneemastorageaccountcrr.blob.core.windows.net/\",\"queue\":\"https://akneemastorageaccountcrr.queue.core.windows.net/\",\"table\":\"https://akneemastorageaccountcrr.table.core.windows.net/\",\"file\":\"https://akneemastorageaccountcrr.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://akneemastorageaccountcrr-secondary.dfs.core.windows.net/\",\"web\":\"https://akneemastorageaccountcrr-secondary.z23.web.core.windows.net/\",\"blob\":\"https://akneemastorageaccountcrr-secondary.blob.core.windows.net/\",\"queue\":\"https://akneemastorageaccountcrr-secondary.queue.core.windows.net/\",\"table\":\"https://akneemastorageaccountcrr-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/asehecshare\",\"name\":\"asehecshare\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"nilsha\",\"MAB + Used\":\"Yes\",\"Purpose\":\"CustomerShare\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-02-26T07:27:49.8455738Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-02-26T07:27:49.8455738Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-02-26T07:27:49.7675377Z\",\"primaryEndpoints\":{\"dfs\":\"https://asehecshare.dfs.core.windows.net/\",\"web\":\"https://asehecshare.z23.web.core.windows.net/\",\"blob\":\"https://asehecshare.blob.core.windows.net/\",\"queue\":\"https://asehecshare.queue.core.windows.net/\",\"table\":\"https://asehecshare.table.core.windows.net/\",\"file\":\"https://asehecshare.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://asehecshare-secondary.dfs.core.windows.net/\",\"web\":\"https://asehecshare-secondary.z23.web.core.windows.net/\",\"blob\":\"https://asehecshare-secondary.blob.core.windows.net/\",\"queue\":\"https://asehecshare-secondary.queue.core.windows.net/\",\"table\":\"https://asehecshare-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portalehsbackupcenter/providers/Microsoft.Storage/storageAccounts/backupcenter\",\"name\":\"backupcenter\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MABUsed\":\"True\",\"MAB + Used\":\"True\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T15:36:27.1502372Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T15:36:27.1502372Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-07-04T15:36:27.0564971Z\",\"primaryEndpoints\":{\"dfs\":\"https://backupcenter.dfs.core.windows.net/\",\"web\":\"https://backupcenter.z23.web.core.windows.net/\",\"blob\":\"https://backupcenter.blob.core.windows.net/\",\"queue\":\"https://backupcenter.queue.core.windows.net/\",\"table\":\"https://backupcenter.table.core.windows.net/\",\"file\":\"https://backupcenter.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://backupcenter-secondary.dfs.core.windows.net/\",\"web\":\"https://backupcenter-secondary.z23.web.core.windows.net/\",\"blob\":\"https://backupcenter-secondary.blob.core.windows.net/\",\"queue\":\"https://backupcenter-secondary.queue.core.windows.net/\",\"table\":\"https://backupcenter-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bvtdibz1depstore1/providers/Microsoft.Storage/storageAccounts/bvtdibz1depstore1\",\"name\":\"bvtdibz1depstore1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-06T16:33:45.7274354Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-06T16:33:45.7274354Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-03-06T16:33:45.6961899Z\",\"primaryEndpoints\":{\"blob\":\"https://bvtdibz1depstore1.blob.core.windows.net/\",\"queue\":\"https://bvtdibz1depstore1.queue.core.windows.net/\",\"table\":\"https://bvtdibz1depstore1.table.core.windows.net/\",\"file\":\"https://bvtdibz1depstore1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq7z2f6xakf/providers/Microsoft.Storage/storageAccounts/clitest3krypnxi5m5iv5hs6\",\"name\":\"clitest3krypnxi5m5iv5hs6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.2136987Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.2136987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:24:32.1043121Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest3krypnxi5m5iv5hs6.blob.core.windows.net/\",\"queue\":\"https://clitest3krypnxi5m5iv5hs6.queue.core.windows.net/\",\"table\":\"https://clitest3krypnxi5m5iv5hs6.table.core.windows.net/\",\"file\":\"https://clitest3krypnxi5m5iv5hs6.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsttin76yg2/providers/Microsoft.Storage/storageAccounts/clitest5pknriehrsxq4uptz\",\"name\":\"clitest5pknriehrsxq4uptz\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:37.5703639Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:37.5703639Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:24:37.4922259Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest5pknriehrsxq4uptz.blob.core.windows.net/\",\"queue\":\"https://clitest5pknriehrsxq4uptz.queue.core.windows.net/\",\"table\":\"https://clitest5pknriehrsxq4uptz.table.core.windows.net/\",\"file\":\"https://clitest5pknriehrsxq4uptz.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaewowgsrym/providers/Microsoft.Storage/storageAccounts/clitest6sjpy5pvx6d3gmxn4\",\"name\":\"clitest6sjpy5pvx6d3gmxn4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:31.4793088Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:31.4793088Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:24:31.3855731Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest6sjpy5pvx6d3gmxn4.blob.core.windows.net/\",\"queue\":\"https://clitest6sjpy5pvx6d3gmxn4.queue.core.windows.net/\",\"table\":\"https://clitest6sjpy5pvx6d3gmxn4.table.core.windows.net/\",\"file\":\"https://clitest6sjpy5pvx6d3gmxn4.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.Storage/storageAccounts/clitest74zbk5m5rzmilzyg2\",\"name\":\"clitest74zbk5m5rzmilzyg2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:26:25.9711648Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:26:25.9711648Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:26:25.8617875Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest74zbk5m5rzmilzyg2.blob.core.windows.net/\",\"queue\":\"https://clitest74zbk5m5rzmilzyg2.queue.core.windows.net/\",\"table\":\"https://clitest74zbk5m5rzmilzyg2.table.core.windows.net/\",\"file\":\"https://clitest74zbk5m5rzmilzyg2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3hjatsouk/providers/Microsoft.Storage/storageAccounts/clitestamtfsj4wgi5sxwzct\",\"name\":\"clitestamtfsj4wgi5sxwzct\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.9868911Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.9868911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:04:11.9087762Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestamtfsj4wgi5sxwzct.blob.core.windows.net/\",\"queue\":\"https://clitestamtfsj4wgi5sxwzct.queue.core.windows.net/\",\"table\":\"https://clitestamtfsj4wgi5sxwzct.table.core.windows.net/\",\"file\":\"https://clitestamtfsj4wgi5sxwzct.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6jjuk24bbq/providers/Microsoft.Storage/storageAccounts/cliteste3pusqqc5653buia2\",\"name\":\"cliteste3pusqqc5653buia2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:10.3775082Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:10.3775082Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:04:10.2994122Z\",\"primaryEndpoints\":{\"blob\":\"https://cliteste3pusqqc5653buia2.blob.core.windows.net/\",\"queue\":\"https://cliteste3pusqqc5653buia2.queue.core.windows.net/\",\"table\":\"https://cliteste3pusqqc5653buia2.table.core.windows.net/\",\"file\":\"https://cliteste3pusqqc5653buia2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgexs542dp6b/providers/Microsoft.Storage/storageAccounts/clitestg4bd4ly4k727ocrgk\",\"name\":\"clitestg4bd4ly4k727ocrgk\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:00:27.0519011Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:00:27.0519011Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:00:26.9893601Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestg4bd4ly4k727ocrgk.blob.core.windows.net/\",\"queue\":\"https://clitestg4bd4ly4k727ocrgk.queue.core.windows.net/\",\"table\":\"https://clitestg4bd4ly4k727ocrgk.table.core.windows.net/\",\"file\":\"https://clitestg4bd4ly4k727ocrgk.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.Storage/storageAccounts/clitesthpmys6nmn2xxkeout\",\"name\":\"clitesthpmys6nmn2xxkeout\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:05:54.3340876Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:05:54.3340876Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:05:54.2559814Z\",\"primaryEndpoints\":{\"blob\":\"https://clitesthpmys6nmn2xxkeout.blob.core.windows.net/\",\"queue\":\"https://clitesthpmys6nmn2xxkeout.queue.core.windows.net/\",\"table\":\"https://clitesthpmys6nmn2xxkeout.table.core.windows.net/\",\"file\":\"https://clitesthpmys6nmn2xxkeout.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7lqkysvww/providers/Microsoft.Storage/storageAccounts/clitestk54ecy4chy2co7gnd\",\"name\":\"clitestk54ecy4chy2co7gnd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.1275150Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.1275150Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:04:11.0493972Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestk54ecy4chy2co7gnd.blob.core.windows.net/\",\"queue\":\"https://clitestk54ecy4chy2co7gnd.queue.core.windows.net/\",\"table\":\"https://clitestk54ecy4chy2co7gnd.table.core.windows.net/\",\"file\":\"https://clitestk54ecy4chy2co7gnd.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5ohknj4mi/providers/Microsoft.Storage/storageAccounts/clitestkdfciv5ofj4tnob6f\",\"name\":\"clitestkdfciv5ofj4tnob6f\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.5418606Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.5418606Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:24:32.4480578Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestkdfciv5ofj4tnob6f.blob.core.windows.net/\",\"queue\":\"https://clitestkdfciv5ofj4tnob6f.queue.core.windows.net/\",\"table\":\"https://clitestkdfciv5ofj4tnob6f.table.core.windows.net/\",\"file\":\"https://clitestkdfciv5ofj4tnob6f.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestnd7t2r7svkvdaxseb\",\"name\":\"clitestnd7t2r7svkvdaxseb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.5873484Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.5873484Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:24:38.5087865Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestnd7t2r7svkvdaxseb.blob.core.windows.net/\",\"queue\":\"https://clitestnd7t2r7svkvdaxseb.queue.core.windows.net/\",\"table\":\"https://clitestnd7t2r7svkvdaxseb.table.core.windows.net/\",\"file\":\"https://clitestnd7t2r7svkvdaxseb.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7r4iweg3hq/providers/Microsoft.Storage/storageAccounts/clitestoyrd43st3qe23f6jf\",\"name\":\"clitestoyrd43st3qe23f6jf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.1016317Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.1016317Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:24:37.9922314Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestoyrd43st3qe23f6jf.blob.core.windows.net/\",\"queue\":\"https://clitestoyrd43st3qe23f6jf.queue.core.windows.net/\",\"table\":\"https://clitestoyrd43st3qe23f6jf.table.core.windows.net/\",\"file\":\"https://clitestoyrd43st3qe23f6jf.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.Storage/storageAccounts/clitestpcvak73m3ollbdu4n\",\"name\":\"clitestpcvak73m3ollbdu4n\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:33.2453220Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:33.2453220Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:24:33.1515627Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestpcvak73m3ollbdu4n.blob.core.windows.net/\",\"queue\":\"https://clitestpcvak73m3ollbdu4n.queue.core.windows.net/\",\"table\":\"https://clitestpcvak73m3ollbdu4n.table.core.windows.net/\",\"file\":\"https://clitestpcvak73m3ollbdu4n.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg57pcqgkrv4/providers/Microsoft.Storage/storageAccounts/clitestpdauphjckdfvi6tkd\",\"name\":\"clitestpdauphjckdfvi6tkd\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:26:24.2548211Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:26:24.2548211Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:26:24.1766951Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestpdauphjckdfvi6tkd.blob.core.windows.net/\",\"queue\":\"https://clitestpdauphjckdfvi6tkd.queue.core.windows.net/\",\"table\":\"https://clitestpdauphjckdfvi6tkd.table.core.windows.net/\",\"file\":\"https://clitestpdauphjckdfvi6tkd.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.Storage/storageAccounts/clitestpgwozdixjp5bknhl3\",\"name\":\"clitestpgwozdixjp5bknhl3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:10.6587598Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:10.6587598Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:04:10.5806584Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestpgwozdixjp5bknhl3.blob.core.windows.net/\",\"queue\":\"https://clitestpgwozdixjp5bknhl3.queue.core.windows.net/\",\"table\":\"https://clitestpgwozdixjp5bknhl3.table.core.windows.net/\",\"file\":\"https://clitestpgwozdixjp5bknhl3.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqav3wldo7/providers/Microsoft.Storage/storageAccounts/clitestqp6ipvk2o5iixqekc\",\"name\":\"clitestqp6ipvk2o5iixqekc\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.2056734Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:04:11.2056734Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:04:11.1275150Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestqp6ipvk2o5iixqekc.blob.core.windows.net/\",\"queue\":\"https://clitestqp6ipvk2o5iixqekc.queue.core.windows.net/\",\"table\":\"https://clitestqp6ipvk2o5iixqekc.table.core.windows.net/\",\"file\":\"https://clitestqp6ipvk2o5iixqekc.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqm3cywp3ku/providers/Microsoft.Storage/storageAccounts/clitestqtdl2haxh2raj7q64\",\"name\":\"clitestqtdl2haxh2raj7q64\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.3828885Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.3828885Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:24:38.2891163Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestqtdl2haxh2raj7q64.blob.core.windows.net/\",\"queue\":\"https://clitestqtdl2haxh2raj7q64.queue.core.windows.net/\",\"table\":\"https://clitestqtdl2haxh2raj7q64.table.core.windows.net/\",\"file\":\"https://clitestqtdl2haxh2raj7q64.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007\",\"name\":\"clitest000007\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-20T07:59:10.1489647Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-20T07:59:10.1489647Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-20T07:59:10.0707872Z\",\"primaryEndpoints\":{\"blob\":\"https://clitest000007.blob.core.windows.net/\",\"queue\":\"https://clitest000007.queue.core.windows.net/\",\"table\":\"https://clitest000007.table.core.windows.net/\",\"file\":\"https://clitest000007.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghjw3gxsi3i/providers/Microsoft.Storage/storageAccounts/clitesttumgkxveptk73nsh6\",\"name\":\"clitesttumgkxveptk73nsh6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.4618511Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T09:24:38.4618511Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T09:24:38.3672392Z\",\"primaryEndpoints\":{\"blob\":\"https://clitesttumgkxveptk73nsh6.blob.core.windows.net/\",\"queue\":\"https://clitesttumgkxveptk73nsh6.queue.core.windows.net/\",\"table\":\"https://clitesttumgkxveptk73nsh6.table.core.windows.net/\",\"file\":\"https://clitesttumgkxveptk73nsh6.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeesvwvwn2j/providers/Microsoft.Storage/storageAccounts/clitestw3gjoy3ivcaeffvec\",\"name\":\"clitestw3gjoy3ivcaeffvec\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:28:17.9716179Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:28:17.9716179Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:28:17.8934891Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestw3gjoy3ivcaeffvec.blob.core.windows.net/\",\"queue\":\"https://clitestw3gjoy3ivcaeffvec.queue.core.windows.net/\",\"table\":\"https://clitestw3gjoy3ivcaeffvec.table.core.windows.net/\",\"file\":\"https://clitestw3gjoy3ivcaeffvec.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4slvxfqd2u/providers/Microsoft.Storage/storageAccounts/clitestwz6qugs3lmxejfury\",\"name\":\"clitestwz6qugs3lmxejfury\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:13:32.7807843Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:13:32.7807843Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:13:32.7026939Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestwz6qugs3lmxejfury.blob.core.windows.net/\",\"queue\":\"https://clitestwz6qugs3lmxejfury.queue.core.windows.net/\",\"table\":\"https://clitestwz6qugs3lmxejfury.table.core.windows.net/\",\"file\":\"https://clitestwz6qugs3lmxejfury.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsi44xot3of/providers/Microsoft.Storage/storageAccounts/clitestzcdlk32y4tlrmrsbv\",\"name\":\"clitestzcdlk32y4tlrmrsbv\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.1043121Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-01-11T05:24:32.1043121Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-01-11T05:24:32.0105641Z\",\"primaryEndpoints\":{\"blob\":\"https://clitestzcdlk32y4tlrmrsbv.blob.core.windows.net/\",\"queue\":\"https://clitestzcdlk32y4tlrmrsbv.queue.core.windows.net/\",\"table\":\"https://clitestzcdlk32y4tlrmrsbv.table.core.windows.net/\",\"file\":\"https://clitestzcdlk32y4tlrmrsbv.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southeastasia\",\"name\":\"f81603southeastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T07:58:23.5575896Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T07:58:23.5575896Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-14T05:38:23.2642824Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603southeastasia.blob.core.windows.net/\",\"queue\":\"https://f81603southeastasia.queue.core.windows.net/\",\"table\":\"https://f81603southeastasia.table.core.windows.net/\",\"file\":\"https://f81603southeastasia.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fsrg1/providers/Microsoft.Storage/storageAccounts/fssa1\",\"name\":\"fssa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-22T04:05:54.6011914Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-22T04:05:54.6011914Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-22T04:05:54.5387331Z\",\"primaryEndpoints\":{\"dfs\":\"https://fssa1.dfs.core.windows.net/\",\"web\":\"https://fssa1.z23.web.core.windows.net/\",\"blob\":\"https://fssa1.blob.core.windows.net/\",\"queue\":\"https://fssa1.queue.core.windows.net/\",\"table\":\"https://fssa1.table.core.windows.net/\",\"file\":\"https://fssa1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://fssa1-secondary.dfs.core.windows.net/\",\"web\":\"https://fssa1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://fssa1-secondary.blob.core.windows.net/\",\"queue\":\"https://fssa1-secondary.queue.core.windows.net/\",\"table\":\"https://fssa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geetaRG/providers/Microsoft.Storage/storageAccounts/geetargdiag\",\"name\":\"geetargdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MABUsed\":\"Yes\",\"DeleteBy\":\"01-2021\",\"Owner\":\"gesahoo\",\"Purpose\":\"Portal\",\"AutoShutdown\":\"No\",\"MAB + Used\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-21T11:50:31.6672396Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-05-21T11:50:31.6672396Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-05-21T11:50:31.6047319Z\",\"primaryEndpoints\":{\"blob\":\"https://geetargdiag.blob.core.windows.net/\",\"queue\":\"https://geetargdiag.queue.core.windows.net/\",\"table\":\"https://geetargdiag.table.core.windows.net/\",\"file\":\"https://geetargdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarRG/providers/Microsoft.Storage/storageAccounts/mayaggarrgdiag\",\"name\":\"mayaggarrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Mab + Used\":\"Yes\",\"Owner\":\"mayaggar\",\"Purpose\":\"BVT\",\"DeleteBy\":\"01-2025\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-27T09:38:42.8782158Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-01-27T09:38:42.8782158Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-01-27T09:38:42.8157350Z\",\"primaryEndpoints\":{\"blob\":\"https://mayaggarrgdiag.blob.core.windows.net/\",\"queue\":\"https://mayaggarrgdiag.queue.core.windows.net/\",\"table\":\"https://mayaggarrgdiag.table.core.windows.net/\",\"file\":\"https://mayaggarrgdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranirg/providers/Microsoft.Storage/storageAccounts/mkheranirgdiag\",\"name\":\"mkheranirgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Owner\":\"mkherani\",\"Purpose\":\" + Testing\",\"MABUsed\":\"Yes\",\"DeleteBy\":\"11-2020\",\"AutoShutdown\":\"No\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-15T08:26:32.0313331Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-15T08:26:32.0313331Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-15T08:26:31.9532333Z\",\"primaryEndpoints\":{\"blob\":\"https://mkheranirgdiag.blob.core.windows.net/\",\"queue\":\"https://mkheranirgdiag.queue.core.windows.net/\",\"table\":\"https://mkheranirgdiag.table.core.windows.net/\",\"file\":\"https://mkheranirgdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.Storage/storageAccounts/nilayrgdiag\",\"name\":\"nilayrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB + Used\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-09-14T06:28:05.9386725Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-09-14T06:28:05.9386725Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-09-14T06:28:05.8354204Z\",\"primaryEndpoints\":{\"blob\":\"https://nilayrgdiag.blob.core.windows.net/\",\"queue\":\"https://nilayrgdiag.queue.core.windows.net/\",\"table\":\"https://nilayrgdiag.table.core.windows.net/\",\"file\":\"https://nilayrgdiag.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa\",\"name\":\"psbvtsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MAB + Used \":\" Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-04-04T08:52:11.0742420Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-04-04T08:52:11.0742420Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-04-04T08:52:10.9961117Z\",\"primaryEndpoints\":{\"dfs\":\"https://psbvtsa.dfs.core.windows.net/\",\"web\":\"https://psbvtsa.z23.web.core.windows.net/\",\"blob\":\"https://psbvtsa.blob.core.windows.net/\",\"queue\":\"https://psbvtsa.queue.core.windows.net/\",\"table\":\"https://psbvtsa.table.core.windows.net/\",\"file\":\"https://psbvtsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://psbvtsa-secondary.dfs.core.windows.net/\",\"web\":\"https://psbvtsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://psbvtsa-secondary.blob.core.windows.net/\",\"queue\":\"https://psbvtsa-secondary.queue.core.windows.net/\",\"table\":\"https://psbvtsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtrg/providers/Microsoft.Storage/storageAccounts/psbvtsa1\",\"name\":\"psbvtsa1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"Mab + Used\":\"Yes\",\"Owner\":\"sisi\",\"Purpose\":\"psbvt\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-30T06:25:04.2006424Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-30T06:25:04.2006424Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-07-30T06:25:04.1381375Z\",\"primaryEndpoints\":{\"dfs\":\"https://psbvtsa1.dfs.core.windows.net/\",\"web\":\"https://psbvtsa1.z23.web.core.windows.net/\",\"blob\":\"https://psbvtsa1.blob.core.windows.net/\",\"queue\":\"https://psbvtsa1.queue.core.windows.net/\",\"table\":\"https://psbvtsa1.table.core.windows.net/\",\"file\":\"https://psbvtsa1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://psbvtsa1-secondary.dfs.core.windows.net/\",\"web\":\"https://psbvtsa1-secondary.z23.web.core.windows.net/\",\"blob\":\"https://psbvtsa1-secondary.blob.core.windows.net/\",\"queue\":\"https://psbvtsa1-secondary.queue.core.windows.net/\",\"table\":\"https://psbvtsa1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Portalehs/providers/Microsoft.Storage/storageAccounts/rsportaldfsa\",\"name\":\"rsportaldfsa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"shrac\",\"ASRUsed\":\"Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T04:44:39.3094286Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T04:44:39.3094286Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-07-04T04:44:39.2157432Z\",\"primaryEndpoints\":{\"dfs\":\"https://rsportaldfsa.dfs.core.windows.net/\",\"web\":\"https://rsportaldfsa.z23.web.core.windows.net/\",\"blob\":\"https://rsportaldfsa.blob.core.windows.net/\",\"queue\":\"https://rsportaldfsa.queue.core.windows.net/\",\"table\":\"https://rsportaldfsa.table.core.windows.net/\",\"file\":\"https://rsportaldfsa.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://rsportaldfsa-secondary.dfs.core.windows.net/\",\"web\":\"https://rsportaldfsa-secondary.z23.web.core.windows.net/\",\"blob\":\"https://rsportaldfsa-secondary.blob.core.windows.net/\",\"queue\":\"https://rsportaldfsa-secondary.queue.core.windows.net/\",\"table\":\"https://rsportaldfsa-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603japaneast\",\"name\":\"f81603japaneast\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"japaneast\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.9155974Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.9155974Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-03-31T23:22:43.6844045Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603japaneast.blob.core.windows.net/\",\"queue\":\"https://f81603japaneast.queue.core.windows.net/\",\"table\":\"https://f81603japaneast.table.core.windows.net/\",\"file\":\"https://f81603japaneast.file.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603japanwest\",\"name\":\"f81603japanwest\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"japanwest\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:44.8370979Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:44.8370979Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-14T05:38:27.3086784Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603japanwest.blob.core.windows.net/\",\"queue\":\"https://f81603japanwest.queue.core.windows.net/\",\"table\":\"https://f81603japanwest.table.core.windows.net/\",\"file\":\"https://f81603japanwest.file.core.windows.net/\"},\"primaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603northeurope\",\"name\":\"f81603northeurope\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"northeurope\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T03:55:08.8709861Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T03:55:08.8709861Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-10-11T17:43:09.1437457Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603northeurope.blob.core.windows.net/\",\"queue\":\"https://f81603northeurope.queue.core.windows.net/\",\"table\":\"https://f81603northeurope.table.core.windows.net/\",\"file\":\"https://f81603northeurope.file.core.windows.net/\"},\"primaryLocation\":\"northeurope\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603australiaeast\",\"name\":\"f81603australiaeast\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"australiaeast\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.9757112Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.9757112Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-14T05:38:29.945901Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603australiaeast.blob.core.windows.net/\",\"queue\":\"https://f81603australiaeast.queue.core.windows.net/\",\"table\":\"https://f81603australiaeast.table.core.windows.net/\",\"file\":\"https://f81603australiaeast.file.core.windows.net/\"},\"primaryLocation\":\"australiaeast\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603southindia\",\"name\":\"f81603southindia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.2934345Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.2934345Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-09-21T08:12:27.0992128Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603southindia.blob.core.windows.net/\",\"queue\":\"https://f81603southindia.queue.core.windows.net/\",\"table\":\"https://f81603southindia.table.core.windows.net/\",\"file\":\"https://f81603southindia.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.Storage/storageAccounts/shracrgdiag\",\"name\":\"shracrgdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{\"MABUsed\":\"Yes\",\"Owner\":\"shrac\",\"Purpose\":\"cloudtest\",\"DeleteBy\":\"12-2099\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T17:46:28.6628622Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-07-04T17:46:28.6628622Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-07-04T17:46:28.6003602Z\",\"primaryEndpoints\":{\"blob\":\"https://shracrgdiag.blob.core.windows.net/\",\"queue\":\"https://shracrgdiag.queue.core.windows.net/\",\"table\":\"https://shracrgdiag.table.core.windows.net/\",\"file\":\"https://shracrgdiag.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbans/providers/Microsoft.Storage/storageAccounts/srbansdiag\",\"name\":\"srbansdiag\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southindia\",\"tags\":{\"MAB + Used\":\" Yes\"},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-04-26T05:34:00.4132000Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2019-04-26T05:34:00.4132000Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2019-04-26T05:34:00.3504940Z\",\"primaryEndpoints\":{\"blob\":\"https://srbansdiag.blob.core.windows.net/\",\"queue\":\"https://srbansdiag.queue.core.windows.net/\",\"table\":\"https://srbansdiag.table.core.windows.net/\",\"file\":\"https://srbansdiag.file.core.windows.net/\"},\"primaryLocation\":\"southindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracnewrg/providers/Microsoft.Storage/storageAccounts/shracnewrgdisks854\",\"name\":\"shracnewrgdisks854\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.6184950Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:47.6184950Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-10-05T05:38:48.1850654Z\",\"primaryEndpoints\":{\"blob\":\"https://shracnewrgdisks854.blob.core.windows.net/\"},\"primaryLocation\":\"centralindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603westindia\",\"name\":\"f81603westindia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westindia\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.8466044Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:45.8466044Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-15T00:53:01.8186483Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603westindia.blob.core.windows.net/\",\"queue\":\"https://f81603westindia.queue.core.windows.net/\",\"table\":\"https://f81603westindia.table.core.windows.net/\",\"file\":\"https://f81603westindia.file.core.windows.net/\"},\"primaryLocation\":\"westindia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603westus2\",\"name\":\"f81603westus2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-11-15T15:22:15.7174423Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2017-11-15T15:22:15.7174423Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-03T13:24:12.1646914Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603westus2.blob.core.windows.net/\",\"queue\":\"https://f81603westus2.queue.core.windows.net/\",\"table\":\"https://f81603westus2.table.core.windows.net/\",\"file\":\"https://f81603westus2.file.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603uksouth\",\"name\":\"f81603uksouth\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"uksouth\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-02-03T20:39:31.4292260Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-02-03T20:39:31.4292260Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-09T11:52:12.1132209Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603uksouth.blob.core.windows.net/\",\"queue\":\"https://f81603uksouth.queue.core.windows.net/\",\"table\":\"https://f81603uksouth.table.core.windows.net/\",\"file\":\"https://f81603uksouth.file.core.windows.net/\"},\"primaryLocation\":\"uksouth\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603koreacentral\",\"name\":\"f81603koreacentral\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreacentral\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:46.0644771Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:46.0644771Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-07-21T00:53:03.2795215Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603koreacentral.blob.core.windows.net/\",\"queue\":\"https://f81603koreacentral.queue.core.windows.net/\",\"table\":\"https://f81603koreacentral.table.core.windows.net/\",\"file\":\"https://f81603koreacentral.file.core.windows.net/\"},\"primaryLocation\":\"koreacentral\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/f81603koreasouth\",\"name\":\"f81603koreasouth\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"koreasouth\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:46.2648151Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2018-01-11T04:47:46.2648151Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-07-21T00:53:04.6676536Z\",\"primaryEndpoints\":{\"blob\":\"https://f81603koreasouth.blob.core.windows.net/\",\"queue\":\"https://f81603koreasouth.queue.core.windows.net/\",\"table\":\"https://f81603koreasouth.table.core.windows.net/\",\"file\":\"https://f81603koreasouth.file.core.windows.net/\"},\"primaryLocation\":\"koreasouth\",\"statusOfPrimary\":\"available\"}}]}" + headers: + cache-control: + - no-cache + content-length: + - '92206' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Jan 2021 08:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 22b3e8be-0e3d-4ffc-a3fd-97d668254a24 + - 1104fa3b-33d5-489a-b898-1a212f8d4c06 + - f572e4b9-dd3d-489e-9dc8-acc6bf0fdbe1 + - fb34d65d-7029-479c-a791-1001847e6fc8 + - c407f423-45a1-4715-9bc6-312de257d296 + - 37f450c2-78ee-4532-8d08-cb30aa6d7d51 + - bd426afd-a2a5-4ee8-8e3c-91b8bc433cb0 + - 17b490c8-474f-4ba0-8b03-d50a3cd3cb76 + - 20b90ecb-986d-4074-901b-9bceeb1a52b2 + - 918ea947-0036-43a3-8f9d-39400626f3c1 + - d3443996-5f27-42a2-b9b3-43bdb6a617ad + - c2b5528d-3e9b-4974-872a-7061ef1bc336 + - bd3a8d7f-0fa4-48e3-8f85-e121f074839e + - 5b2ee2d4-d54b-4160-88a1-4beed0db653c + - 8a30a084-53bd-4e88-9a34-cfbbaeeabcc0 + - 4f7dd97d-2b0f-451c-8708-dffe40528ed9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob exists + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name -c -n + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.8.5 (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/clitest000007/listKeys?api-version=2019-06-01&$expand=kerb + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.5; Windows 10) AZURECLI/2.18.0 + x-ms-date: + - Wed, 20 Jan 2021 08:08:48 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://clitest000007.blob.core.windows.net/clitestvmhtb5m-fbbd4e7b2a7f4de68b7efb4a4006710b/config-clitestvmhtb5m-23ff20b6-72b3-4776-806e-b7a97928c384.json + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '4096' + content-type: + - application/octet-stream + date: + - Wed, 20 Jan 2021 08:08:49 GMT + etag: + - '"0x8D8BD1A894F0999"' + last-modified: + - Wed, 20 Jan 2021 08:08:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-sequence-number: + - '0' + x-ms-blob-type: + - PageBlob + x-ms-creation-time: + - Wed, 20 Jan 2021 08:08:14 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-meta-configblobsize: + - '4096' + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2495' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","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, 20 Jan 2021 08:08: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 restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2495' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","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, 20 Jan 2021 08:08: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","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"}}' + headers: + cache-control: + - no-cache + content-length: + - '1175' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000007?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000007'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Jan 2021 08:08:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","name":"clitest000007","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-20T07:59:10.1489647Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-20T07:59:10.0707872Z","primaryEndpoints":{"blob":"https://clitest000007.blob.core.windows.net/","queue":"https://clitest000007.queue.core.windows.net/","table":"https://clitest000007.table.core.windows.net/","file":"https://clitest000007.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '974' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "2260930823768774574", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", + "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + Content-Length: + - '686' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574/restore?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/3b28d0bd-c58b-49ed-93a0-d3dcc2dd019d?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 20 Jan 2021 08:08:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/3b28d0bd-c58b-49ed-93a0-d3dcc2dd019d?api-version=2020-10-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 restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/3b28d0bd-c58b-49ed-93a0-d3dcc2dd019d?api-version=2020-10-01 + response: + body: + string: '{"id":"3b28d0bd-c58b-49ed-93a0-d3dcc2dd019d","name":"3b28d0bd-c58b-49ed-93a0-d3dcc2dd019d","status":"Succeeded","startTime":"2021-01-20T08:08:57.9625945Z","endTime":"2021-01-20T08:08:57.9625945Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT0.9288016S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":null},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1180' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:08: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2.8274453S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1198' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:09: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.5752184S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1198' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:09: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34.1796954S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1199' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:09: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M4.7287209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1200' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:10: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M35.3345435S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:10: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M5.9833101S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1200' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:11: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M36.6103195S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:11: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M7.1640824S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1200' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:12: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M37.7495721S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:12: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M8.3933215S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1200' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:13: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M39.0141641S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:13: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M9.597213S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1199' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:14: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M40.2348856S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:14: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M10.8998521S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M41.5306144S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:15: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M12.09202S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1199' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:16: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M42.6369937S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:16: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M13.4437441S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:17: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M45.2469523S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:17: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M15.7950116S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:18: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M46.3463435S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1201' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:18: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M16.8621893S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1202' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:19: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M47.4362971S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1202' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:19: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M17.9399527S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1202' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:20: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M48.5017755S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1202' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:20: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M19.0442521S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:21: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M49.9007973S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:21: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M20.8563598S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:22: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M51.5722518S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:22: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M22.1527374S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:23: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M53.0498114S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:23: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M23.645014S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M54.380809S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:24: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M25.0261758S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:25: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M55.830685S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M5.7451633S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:25: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M27.9090058S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:26: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M58.4652224S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:26: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M29.0139218S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:27: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M59.8564129S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:27: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M30.4471484S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:28: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M1.0751189S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1304' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M31.6737304S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:29: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M2.2966748S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1304' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:30: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M32.8673201S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:30: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M3.4609354S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.7 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":76.0,"estimatedRemainingDuration":"PT5M7.7599168S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1304' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M34.1038366S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M4.7012884S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M35.2957075S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M5.8862231S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:33: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M36.4227647S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M7.0860593S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M37.9488868S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M8.5705402S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:35: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M39.1754502S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"112.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":88.0,"estimatedRemainingDuration":"PT2M47.5125124S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:35: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M9.7515279S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:36: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M40.6717785S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:36: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M11.4251543S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M41.9975139S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M12.5186598S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:38: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M43.9938181S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:38: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M14.5163005S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M45.1104046S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:39: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M15.6413893S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M46.1421422S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M22.6727066S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:40: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M16.8918163S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:41: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M47.5311255S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:41: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M18.1037723S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:42: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M48.5897994S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:42: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M19.0509617S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:43: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M49.6124478S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:43: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M20.2332366S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:44: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M50.9125873S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:44: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M21.4497829S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:45: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M51.9094288S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.76 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M49.0080928S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1308' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:45: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M22.4013505S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:46: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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M53.0095588S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:46: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M35.3558617S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:47: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M6.2112196S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:48: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M36.7273425S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:48: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M7.2827981S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:49: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M37.7425477S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:49: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M8.3593366S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1306' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:50: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M38.9028455S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"120.26 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":94.0,"estimatedRemainingDuration":"PT2M4.8448967S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-20T08:08:57.9625945Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1307' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:50: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M8.2849458S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json","Config + Blob Container Name":"clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b/config-clitestvmhtb5m-2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json","Template + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b/azuredeploy2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-20T08:08:57.9625945Z","endTime":"2021-01-20T08:51:06.2475403Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1862' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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: + - '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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/2ac87f7f-b115-4461-96e0-4bd0a3d94df7","name":"2ac87f7f-b115-4461-96e0-4bd0a3d94df7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M8.2849458S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000007","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json","Config + Blob Container Name":"clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b","Config + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b/config-clitestvmhtb5m-2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json","Template + Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmhtb5m-9a1e92aa7e014e218e3436092fafcf5b/azuredeploy2ac87f7f-b115-4461-96e0-4bd0a3d94df7.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-20T08:08:57.9625945Z","endTime":"2021-01-20T08:51:06.2475403Z","activityId":"baa7bddd-5af6-11eb-ace6-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1862' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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: + - '65' + 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 --use-secondary-region + --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems/?api-version=2018-12-20&$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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2495' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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 recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - --backup-management-type --workload-type -g -v -c -i --use-secondary-region + --query + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/?api-version=2018-12-20 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems/?api-version=2018-12-20&$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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2495' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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: + - '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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems/?api-version=2018-12-20&$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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2495' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/?api-version=2018-12-20 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260930823768774574","name":"2260930823768774574","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-20T06:37:11.4880234Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":2,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000008?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000008'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 20 Jan 2021 08:51:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000008?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000008","name":"clitest000008","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-20T07:59:36.8270612Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-20T07:59:36.7489401Z","primaryEndpoints":{"blob":"https://clitest000008.blob.core.windows.net/","queue":"https://clitest000008.queue.core.windows.net/","table":"https://clitest000008.table.core.windows.net/","file":"https://clitest000008.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '964' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupAadProperties?api-version=2018-12-20 + response: + body: + string: '{"properties":{"tenantId":"33e01921-4d64-4f8c-a055-5bdaffd5e33d","audience":"https://RecoveryServices/IaasCoord/aadmgmt/ea","servicePrincipalObjectId":"a5558d3a-e3e3-42ef-a725-d9cd9ed018c5"}}' + headers: + cache-control: + - no-cache + content-length: + - '191' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"tenantId": "33e01921-4d64-4f8c-a055-5bdaffd5e33d", "audience": + "https://RecoveryServices/IaasCoord/aadmgmt/ea", "servicePrincipalObjectId": + "a5558d3a-e3e3-42ef-a725-d9cd9ed018c5"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + Content-Length: + - '197' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260930823768774574/accessToken?api-version=2018-12-20 + response: + body: + string: '{"properties":{"objectType":"CrrAccessToken","accessTokenString":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImNkN2dKc1Bqd1BQSkZmMHFFQW1pN0RHR243WSJ9.eyJVc2VySWRlbnRpdHlUeXBlIjoiQUFEIiwiQWFkVGVuYW50SWQiOiIzM2UwMTkyMS00ZDY0LTRmOGMtYTA1NS01YmRhZmZkNWUzM2QiLCJBYWRTUE9iamVjdElkIjoiYTU1NThkM2EtZTNlMy00MmVmLWE3MjUtZDljZDllZDAxOGM1IiwiUGl0UGVybWlzc2lvbnMiOiJSZWFkIiwiQmFja3VwVmF1bHRJRCI6IjkwNDg1ODc1Nzc2MzgyOTQ0NzciLCJDb250YWluZXJJRCI6IjQ3MDk4NiIsIkRhdGFzb3VyY2VJRCI6IjIyNjEwODg0ODkxNDg0NjYzNzUiLCJQaXRJRCI6IjIyNjA5MzA4MjM3Njg3NzQ1NzQiLCJpc3NpZCI6ImExNzFmMGZlLTEwNDAtNGIyZC04M2NkLTkwNjI4ZWJiZTA4ZSIsImh0dHA6Ly9zY2hlbWFzLndpbmRvd3NjbG91ZGJhY2t1cC5jb20vMjAxMC8xMC9pZGVudGl0eS9jbGFpbXMvcmVzb3VyY2VpZCI6IjkwNDg1ODc1Nzc2MzgyOTQ0NzciLCJodHRwOi8vc2NoZW1hcy53aW5kb3dzY2xvdWRiYWNrdXAuY29tLzIwMTAvMTAvaWRlbnRpdHkvY2xhaW1zL2NvbnRhaW5lcmlkIjoiNDcwOTg2IiwiaXNzIjoiaHR0cDovL21pY3Jvc29mdC5kYXRhcHJvdGVjdGlvbi9pc3N1ZXJzL2ExNzFmMGZlLTEwNDAtNGIyZC04M2NkLTkwNjI4ZWJiZTA4ZSIsImF1ZCI6Imh0dHA6Ly9taWNyb3NvZnQuZGF0YXByb3RlY3Rpb24vUHJvdGVjdGlvblNlcnZpY2UiLCJleHAiOjE2MTEyMTkxMDksIm5iZiI6MTYxMTEzMjQwOX0.RD9gR92jdIPCFPUwdhbPa56dFBvALyIFxxTepWRTKE6LRLgbRp-Ndb_WeodFrAQubcv6X9FJxXTxscS4uDZBcKSzstx7LacC6hxrVF1fW3KcogrWNtMH6znDCzF_8A0KWq-h9PEaGn3pwJFX1S--s9lXDMLnnwhHBwbc_JQsEgsiLhMw5qzHd6w-H1icbQMRj8RfSi-SSarth8EuMvHg7x4QhQzObzX6T9NVyafiQCtQIqE2slUfk7SPG0txcc-uNXAqviJlv5fNx91WMF9-DJZIv-36CNGp512MkZQ4w675QosrxKz3oR-ZevZra9ecg8w9HnmMto1o_hAUDKG23g","subscriptionId":"f879818f-5b29-4a43-8961-34169783144f","resourceGroupName":"clitest.rg000001","resourceName":"clitest-vault000003","resourceId":"9048587577638294477","protectionContainerId":470986,"recoveryPointId":"2260930823768774574","recoveryPointTime":"1/20/2021 + 6:37:11 AM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","containerType":"IaasVMContainer","backupManagementType":"AzureIaasVM","datasourceType":"VM","datasourceName":"clitest-vm000004","datasourceId":"2261088489148466375","datasourceContainerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","coordinatorServiceStampUri":"https://pod01-coord1.sea.backup.windowsazure.com","protectionServiceStampId":"e92881de-b156-4d3c-99c4-7cd0b91e7af7","protectionServiceStampUri":"https://pod01-prot1c.sea.backup.windowsazure.com","tokenExtendedInformation":"V2015_09f879818f-5b29-4a43-8961-34169783144f;AzureBackup_clitest-vm000004_2261088489148466375;AzureBackup_20210120_063710;AzureBackupRG_southeastasia_1truetruefalseWindowsAppConsistentPremiumVMOnPremiumStorageStandard_DS1_v2","rpTierInformation":{"InstantRP":"Valid","HardenedRP":"Valid"},"rpOriginalSAOption":false,"rpIsManagedVirtualMachine":true,"rpVMSizeDescription":"Standard_DS1_v2"}}' + headers: + cache-control: + - no-cache + content-length: + - '3679' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"crossRegionRestoreAccessDetails": {"accessTokenString": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImNkN2dKc1Bqd1BQSkZmMHFFQW1pN0RHR243WSJ9.eyJVc2VySWRlbnRpdHlUeXBlIjoiQUFEIiwiQWFkVGVuYW50SWQiOiIzM2UwMTkyMS00ZDY0LTRmOGMtYTA1NS01YmRhZmZkNWUzM2QiLCJBYWRTUE9iamVjdElkIjoiYTU1NThkM2EtZTNlMy00MmVmLWE3MjUtZDljZDllZDAxOGM1IiwiUGl0UGVybWlzc2lvbnMiOiJSZWFkIiwiQmFja3VwVmF1bHRJRCI6IjkwNDg1ODc1Nzc2MzgyOTQ0NzciLCJDb250YWluZXJJRCI6IjQ3MDk4NiIsIkRhdGFzb3VyY2VJRCI6IjIyNjEwODg0ODkxNDg0NjYzNzUiLCJQaXRJRCI6IjIyNjA5MzA4MjM3Njg3NzQ1NzQiLCJpc3NpZCI6ImExNzFmMGZlLTEwNDAtNGIyZC04M2NkLTkwNjI4ZWJiZTA4ZSIsImh0dHA6Ly9zY2hlbWFzLndpbmRvd3NjbG91ZGJhY2t1cC5jb20vMjAxMC8xMC9pZGVudGl0eS9jbGFpbXMvcmVzb3VyY2VpZCI6IjkwNDg1ODc1Nzc2MzgyOTQ0NzciLCJodHRwOi8vc2NoZW1hcy53aW5kb3dzY2xvdWRiYWNrdXAuY29tLzIwMTAvMTAvaWRlbnRpdHkvY2xhaW1zL2NvbnRhaW5lcmlkIjoiNDcwOTg2IiwiaXNzIjoiaHR0cDovL21pY3Jvc29mdC5kYXRhcHJvdGVjdGlvbi9pc3N1ZXJzL2ExNzFmMGZlLTEwNDAtNGIyZC04M2NkLTkwNjI4ZWJiZTA4ZSIsImF1ZCI6Imh0dHA6Ly9taWNyb3NvZnQuZGF0YXByb3RlY3Rpb24vUHJvdGVjdGlvblNlcnZpY2UiLCJleHAiOjE2MTEyMTkxMDksIm5iZiI6MTYxMTEzMjQwOX0.RD9gR92jdIPCFPUwdhbPa56dFBvALyIFxxTepWRTKE6LRLgbRp-Ndb_WeodFrAQubcv6X9FJxXTxscS4uDZBcKSzstx7LacC6hxrVF1fW3KcogrWNtMH6znDCzF_8A0KWq-h9PEaGn3pwJFX1S--s9lXDMLnnwhHBwbc_JQsEgsiLhMw5qzHd6w-H1icbQMRj8RfSi-SSarth8EuMvHg7x4QhQzObzX6T9NVyafiQCtQIqE2slUfk7SPG0txcc-uNXAqviJlv5fNx91WMF9-DJZIv-36CNGp512MkZQ4w675QosrxKz3oR-ZevZra9ecg8w9HnmMto1o_hAUDKG23g", + "subscriptionId": "f879818f-5b29-4a43-8961-34169783144f", "resourceGroupName": + "clitest.rg000001", "resourceName": "clitest-vault000003", "resourceId": "9048587577638294477", + "protectionContainerId": 470986, "recoveryPointId": "2260930823768774574", "recoveryPointTime": + "1/20/2021 6:37:11 AM", "containerName": "iaasvmcontainerv2;clitest.rg000001;clitest-vm000004", + "containerType": "IaasVMContainer", "backupManagementType": "AzureIaasVM", "datasourceType": + "VM", "datasourceName": "clitest-vm000004", "datasourceId": "2261088489148466375", + "datasourceContainerName": "iaasvmcontainerv2;clitest.rg000001;clitest-vm000004", + "coordinatorServiceStampUri": "https://pod01-coord1.sea.backup.windowsazure.com", + "protectionServiceStampId": "e92881de-b156-4d3c-99c4-7cd0b91e7af7", "protectionServiceStampUri": + "https://pod01-prot1c.sea.backup.windowsazure.com", "tokenExtendedInformation": + "V2015_09f879818f-5b29-4a43-8961-34169783144f;AzureBackup_clitest-vm000004_2261088489148466375;AzureBackup_20210120_063710;AzureBackupRG_southeastasia_1truetruefalseWindowsAppConsistentPremiumVMOnPremiumStorageStandard_DS1_v2", "rpTierInformation": {"InstantRP": "Valid", + "HardenedRP": "Valid"}, "rpOriginalSAOption": false, "rpIsManagedVirtualMachine": + true, "rpVMSizeDescription": "Standard_DS1_v2", "objectType": "CrrAccessToken"}, + "restoreRequest": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "2260930823768774574", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004", + "targetResourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000008", + "region": "eastasia", "createNewCloudService": true, "originalStorageAccountOption": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + Content-Length: + - '4607' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrossRegionRestore?api-version=2018-12-20 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrOperationsStatus/OTA0ODU4NzU3NzYzODI5NDQ3Nzs5MjJkMGJkMS0yZmIyLTRmZGQtYmQwNS0zODJiNDMzOWUyYmE=?api-version=2018-12-20 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 20 Jan 2021 08:51:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrOperationResults/OTA0ODU4NzU3NzYzODI5NDQ3Nzs5MjJkMGJkMS0yZmIyLTRmZGQtYmQwNS0zODJiNDMzOWUyYmE=?api-version=2018-12-20 + 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 restore restore-disks + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrOperationsStatus/OTA0ODU4NzU3NzYzODI5NDQ3Nzs5MjJkMGJkMS0yZmIyLTRmZGQtYmQwNS0zODJiNDMzOWUyYmE%3D?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrOperationsStatus/OTA0ODU4NzU3NzYzODI5NDQ3Nzs5MjJkMGJkMS0yZmIyLTRmZGQtYmQwNS0zODJiNDMzOWUyYmE=","name":"OTA0ODU4NzU3NzYzODI5NDQ3Nzs5MjJkMGJkMS0yZmIyLTRmZGQtYmQwNS0zODJiNDMzOWUyYmE=","status":"Succeeded","startTime":"2021-01-20T08:51:50.4124903Z","endTime":"2021-01-20T08:51:51Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-disks + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --storage-account -t --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1.8257636S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1446' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + response: + body: + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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 + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.2867817S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1446' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4.7913945S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1446' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:51: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-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35.2071975S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1447' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:52: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-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M5.8158291S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:52: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-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M36.3422175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1449' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:53: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-writes: + - '1195' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M6.8243239S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:53: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-writes: + - '1194' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M37.3392397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1449' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:54: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-writes: + - '1193' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M7.7579231S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:54: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-writes: + - '1192' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M38.2290375S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1449' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:55: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-writes: + - '1191' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -n --use-secondary-region + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M8.8360235S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json + date: + - Wed, 20 Jan 2021 08:55: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-writes: + - '1190' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M39.3618749S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:09 GMT + - Wed, 20 Jan 2021 08:56: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: @@ -15435,52 +23513,62 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1189' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M9.849069S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2495' + - '1447' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:10 GMT + - Wed, 20 Jan 2021 08:57: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: @@ -15489,51 +23577,62 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1188' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000004%27%20and%20status%20eq%20%27Registered%27 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M40.3205546S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:12 GMT + - Wed, 20 Jan 2021 08:57: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: @@ -15542,51 +23641,62 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1187' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260973503948227715?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/recoveryPoints/2260973503948227715","name":"2260973503948227715","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T10:46:37.9564604Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M11.5120199S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:14 GMT + - Wed, 20 Jan 2021 08:58: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: @@ -15595,51 +23705,62 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1186' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2020-12-18T10%3A43%3A14.2649768Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M41.9546297S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:17 GMT + - Wed, 20 Jan 2021 08:58: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: @@ -15648,94 +23769,126 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1185' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000007?api-version=2015-12-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000007'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M12.4590416S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1449' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 12:13:17 GMT + - Wed, 20 Jan 2021 08:59: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1184' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007?api-version=2016-01-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","name":"clitest000007","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T12:08:30.0403537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T12:08:29.9778728Z","primaryEndpoints":{"blob":"https://clitest000007.blob.core.windows.net/","queue":"https://clitest000007.queue.core.windows.net/","table":"https://clitest000007.table.core.windows.net/","file":"https://clitest000007.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M42.9390106S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:17 GMT + - Wed, 20 Jan 2021 08:59:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -15744,104 +23897,126 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1183' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2260973503948227715", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007", - "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": - false}}' + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive Content-Length: - - '686' + - '280' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/recoveryPoints/2260973503948227715/restore?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M13.4337225S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationsStatus/81708cb7-ee82-4f1d-bb89-84fe62bd4c7d?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '1449' + content-type: + - application/json date: - - Fri, 18 Dec 2020 12:13:20 GMT + - Wed, 20 Jan 2021 09:00:03 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/operationResults/81708cb7-ee82-4f1d-bb89-84fe62bd4c7d?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.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' + - '1182' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/81708cb7-ee82-4f1d-bb89-84fe62bd4c7d?api-version=2016-12-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"81708cb7-ee82-4f1d-bb89-84fe62bd4c7d","name":"81708cb7-ee82-4f1d-bb89-84fe62bd4c7d","status":"Succeeded","startTime":"2020-12-18T12:13:20.6123979Z","endTime":"2020-12-18T12:13:20.6123979Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"38ec191f-95ba-4f90-bc35-29abcb127fad"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M43.9529244S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:22 GMT + - Wed, 20 Jan 2021 09:00: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: @@ -15850,48 +24025,55 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1181' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --restore-as-unmanaged-disks --storage-account + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3.7996402S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M14.4272922S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1138' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:24 GMT + - Wed, 20 Jan 2021 09:01:04 GMT expires: - '-1' pragma: @@ -15907,15 +24089,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1180' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -15925,30 +24108,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6.1517632S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M44.9041587S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1138' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:27 GMT + - Wed, 20 Jan 2021 09:01:35 GMT expires: - '-1' pragma: @@ -15964,15 +24153,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1179' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -15982,30 +24172,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6.9695021S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M15.4385975S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1138' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:28 GMT + - Wed, 20 Jan 2021 09:02:05 GMT expires: - '-1' pragma: @@ -16021,15 +24217,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-writes: + - '1178' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16039,30 +24236,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37.6780092S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M45.9360605S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1139' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:13:58 GMT + - Wed, 20 Jan 2021 09:02:36 GMT expires: - '-1' pragma: @@ -16078,15 +24281,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1177' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16096,30 +24300,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M8.4919612S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M16.4556646S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:14:29 GMT + - Wed, 20 Jan 2021 09:03:06 GMT expires: - '-1' pragma: @@ -16135,15 +24345,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + x-ms-ratelimit-remaining-subscription-writes: + - '1176' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16153,30 +24364,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT1M40.3495188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M46.8984134S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:15:01 GMT + - Wed, 20 Jan 2021 09:03:36 GMT expires: - '-1' pragma: @@ -16192,15 +24409,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + x-ms-ratelimit-remaining-subscription-writes: + - '1175' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16210,30 +24428,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M11.3892272S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M17.7290469S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:15:32 GMT + - Wed, 20 Jan 2021 09:04:08 GMT expires: - '-1' pragma: @@ -16249,15 +24473,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + x-ms-ratelimit-remaining-subscription-writes: + - '1174' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16267,30 +24492,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT2M42.1681262S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M48.2770062S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:16:03 GMT + - Wed, 20 Jan 2021 09:04:38 GMT expires: - '-1' pragma: @@ -16306,15 +24537,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + x-ms-ratelimit-remaining-subscription-writes: + - '1173' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16324,30 +24556,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M13.135798S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M18.7892658S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:16:33 GMT + - Wed, 20 Jan 2021 09:05:08 GMT expires: - '-1' pragma: @@ -16363,15 +24601,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + x-ms-ratelimit-remaining-subscription-writes: + - '1172' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16381,30 +24620,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT3M43.9883947S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M49.2287799S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:17:05 GMT + - Wed, 20 Jan 2021 09:05:38 GMT expires: - '-1' pragma: @@ -16420,15 +24665,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + x-ms-ratelimit-remaining-subscription-writes: + - '1171' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16438,30 +24684,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M14.798327S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M19.7712098S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:17:35 GMT + - Wed, 20 Jan 2021 09:06:10 GMT expires: - '-1' pragma: @@ -16477,15 +24729,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + x-ms-ratelimit-remaining-subscription-writes: + - '1170' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16495,30 +24748,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT4M46.7533914S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M50.2622814S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:18:07 GMT + - Wed, 20 Jan 2021 09:06:40 GMT expires: - '-1' pragma: @@ -16534,15 +24793,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + x-ms-ratelimit-remaining-subscription-writes: + - '1169' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16552,30 +24812,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M17.6173441S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M20.7557104S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:18:38 GMT + - Wed, 20 Jan 2021 09:07:10 GMT expires: - '-1' pragma: @@ -16591,15 +24857,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + x-ms-ratelimit-remaining-subscription-writes: + - '1168' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16609,30 +24876,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT5M48.3788144S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M51.337366S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:19:08 GMT + - Wed, 20 Jan 2021 09:07:41 GMT expires: - '-1' pragma: @@ -16648,15 +24921,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + x-ms-ratelimit-remaining-subscription-writes: + - '1167' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16666,30 +24940,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M19.1753162S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M21.8280765S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:19:40 GMT + - Wed, 20 Jan 2021 09:08:11 GMT expires: - '-1' pragma: @@ -16705,15 +24985,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + x-ms-ratelimit-remaining-subscription-writes: + - '1166' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16723,30 +25004,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT6M50.0180699S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M52.2832882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:20:10 GMT + - Wed, 20 Jan 2021 09:08:42 GMT expires: - '-1' pragma: @@ -16762,15 +25049,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + x-ms-ratelimit-remaining-subscription-writes: + - '1165' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16780,30 +25068,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M20.7910803S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M22.8428824S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:20:41 GMT + - Wed, 20 Jan 2021 09:09:13 GMT expires: - '-1' pragma: @@ -16819,15 +25113,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + x-ms-ratelimit-remaining-subscription-writes: + - '1164' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16837,30 +25132,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT7M51.7324254S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M53.3304436S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:21:12 GMT + - Wed, 20 Jan 2021 09:09:43 GMT expires: - '-1' pragma: @@ -16876,15 +25177,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + x-ms-ratelimit-remaining-subscription-writes: + - '1163' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16894,30 +25196,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M22.6175676S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M24.3135002S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:21:44 GMT + - Wed, 20 Jan 2021 09:10:14 GMT expires: - '-1' pragma: @@ -16933,15 +25241,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + x-ms-ratelimit-remaining-subscription-writes: + - '1162' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -16951,30 +25260,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT8M54.6629785S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M54.8011019S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:22:15 GMT + - Wed, 20 Jan 2021 09:10:45 GMT expires: - '-1' pragma: @@ -16990,15 +25305,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + x-ms-ratelimit-remaining-subscription-writes: + - '1161' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17008,30 +25324,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M25.4865017S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M25.2012392S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:22:45 GMT + - Wed, 20 Jan 2021 09:11:15 GMT expires: - '-1' pragma: @@ -17047,15 +25369,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + x-ms-ratelimit-remaining-subscription-writes: + - '1160' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17065,30 +25388,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT9M56.3447446S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M55.7374417S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:23:17 GMT + - Wed, 20 Jan 2021 09:11:45 GMT expires: - '-1' pragma: @@ -17104,15 +25433,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + x-ms-ratelimit-remaining-subscription-writes: + - '1159' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17122,30 +25452,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M27.0799655S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M26.2011576S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1142' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:23:47 GMT + - Wed, 20 Jan 2021 09:12:15 GMT expires: - '-1' pragma: @@ -17161,15 +25497,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + x-ms-ratelimit-remaining-subscription-writes: + - '1158' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17179,30 +25516,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT10M57.905191S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M56.8006168S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:24:18 GMT + - Wed, 20 Jan 2021 09:12:47 GMT expires: - '-1' pragma: @@ -17218,15 +25561,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + x-ms-ratelimit-remaining-subscription-writes: + - '1157' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17236,30 +25580,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M29.109072S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M27.277449S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:24:50 GMT + - Wed, 20 Jan 2021 09:13:17 GMT expires: - '-1' pragma: @@ -17275,15 +25625,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + x-ms-ratelimit-remaining-subscription-writes: + - '1156' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17293,30 +25644,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11M59.8864371S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M57.7088619S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000007","Recovery - point time ":"12/18/2020 10:46:37 AM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1142' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:25:20 GMT + - Wed, 20 Jan 2021 09:13:47 GMT expires: - '-1' pragma: @@ -17332,15 +25689,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + x-ms-ratelimit-remaining-subscription-writes: + - '1155' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17350,31 +25708,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT12M30.7035399S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M28.1899472S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:25:51 GMT + - Wed, 20 Jan 2021 09:14:18 GMT expires: - '-1' pragma: @@ -17390,15 +25753,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + x-ms-ratelimit-remaining-subscription-writes: + - '1154' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17408,31 +25772,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M1.5825882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M58.9744694S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:26:22 GMT + - Wed, 20 Jan 2021 09:14:48 GMT expires: - '-1' pragma: @@ -17448,15 +25817,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + x-ms-ratelimit-remaining-subscription-writes: + - '1153' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17466,31 +25836,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT13M32.5918801S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M29.4069585S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:26:52 GMT + - Wed, 20 Jan 2021 09:15:19 GMT expires: - '-1' pragma: @@ -17506,15 +25881,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + x-ms-ratelimit-remaining-subscription-writes: + - '1152' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17524,31 +25900,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M4.4815756S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M59.8620289S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:27:25 GMT + - Wed, 20 Jan 2021 09:15:50 GMT expires: - '-1' pragma: @@ -17564,15 +25945,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + x-ms-ratelimit-remaining-subscription-writes: + - '1151' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17582,31 +25964,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT14M37.6829133S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M30.835856S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:27:57 GMT + - Wed, 20 Jan 2021 09:16:20 GMT expires: - '-1' pragma: @@ -17622,15 +26009,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + x-ms-ratelimit-remaining-subscription-writes: + - '1150' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17640,31 +26028,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M8.5039972S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M1.323986S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1448' content-type: - application/json date: - - Fri, 18 Dec 2020 12:28:29 GMT + - Wed, 20 Jan 2021 09:16:51 GMT expires: - '-1' pragma: @@ -17680,15 +26073,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + x-ms-ratelimit-remaining-subscription-writes: + - '1149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17698,31 +26092,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT15M39.2560905S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M31.8874632S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:28:59 GMT + - Wed, 20 Jan 2021 09:17:22 GMT expires: - '-1' pragma: @@ -17738,15 +26137,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + x-ms-ratelimit-remaining-subscription-writes: + - '1148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17756,31 +26156,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M9.996749S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M2.3771603S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1243' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:29:30 GMT + - Wed, 20 Jan 2021 09:17:52 GMT expires: - '-1' pragma: @@ -17796,15 +26201,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + x-ms-ratelimit-remaining-subscription-writes: + - '1147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17814,31 +26220,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT16M40.7713153S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.875496S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M32.8186211S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:30:01 GMT + - Wed, 20 Jan 2021 09:18:23 GMT expires: - '-1' pragma: @@ -17854,15 +26265,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + x-ms-ratelimit-remaining-subscription-writes: + - '1146' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17872,31 +26284,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M11.9129784S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M3.2412959S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:30:33 GMT + - Wed, 20 Jan 2021 09:18:53 GMT expires: - '-1' pragma: @@ -17912,15 +26329,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + x-ms-ratelimit-remaining-subscription-writes: + - '1145' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17930,31 +26348,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT17M42.7112558S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M33.7578319S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:31:03 GMT + - Wed, 20 Jan 2021 09:19:23 GMT expires: - '-1' pragma: @@ -17970,15 +26393,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + x-ms-ratelimit-remaining-subscription-writes: + - '1144' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -17988,31 +26412,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M13.4917263S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M4.2142811S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:31:33 GMT + - Wed, 20 Jan 2021 09:19:54 GMT expires: - '-1' pragma: @@ -18028,15 +26457,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + x-ms-ratelimit-remaining-subscription-writes: + - '1143' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18046,31 +26476,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT18M45.3199606S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M34.6714405S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:32:06 GMT + - Wed, 20 Jan 2021 09:20:24 GMT expires: - '-1' pragma: @@ -18086,15 +26521,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + x-ms-ratelimit-remaining-subscription-writes: + - '1142' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18104,31 +26540,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M16.1176228S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M5.1869947S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:32:36 GMT + - Wed, 20 Jan 2021 09:20:55 GMT expires: - '-1' pragma: @@ -18144,15 +26585,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + x-ms-ratelimit-remaining-subscription-writes: + - '1141' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18162,31 +26604,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT19M46.9245156S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M37.5791863S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:33:07 GMT + - Wed, 20 Jan 2021 09:21:27 GMT expires: - '-1' pragma: @@ -18202,15 +26649,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + x-ms-ratelimit-remaining-subscription-writes: + - '1140' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18220,31 +26668,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M17.695436S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M8.0611388S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:33:38 GMT + - Wed, 20 Jan 2021 09:21:58 GMT expires: - '-1' pragma: @@ -18260,15 +26713,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + x-ms-ratelimit-remaining-subscription-writes: + - '1139' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18278,31 +26732,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT20M48.4359797S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M39.0371438S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:34:09 GMT + - Wed, 20 Jan 2021 09:22:29 GMT expires: - '-1' pragma: @@ -18318,15 +26777,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + x-ms-ratelimit-remaining-subscription-writes: + - '1138' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18336,31 +26796,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M19.2102177S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M9.5754746S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:34:39 GMT + - Wed, 20 Jan 2021 09:22:59 GMT expires: - '-1' pragma: @@ -18376,15 +26841,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + x-ms-ratelimit-remaining-subscription-writes: + - '1137' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18394,31 +26860,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT21M49.9656208S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.43 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M57.602198S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M40.1063235S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:35:11 GMT + - Wed, 20 Jan 2021 09:23:29 GMT expires: - '-1' pragma: @@ -18434,15 +26905,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + x-ms-ratelimit-remaining-subscription-writes: + - '1136' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18452,31 +26924,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M20.7085674S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M10.5749519S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:35:41 GMT + - Wed, 20 Jan 2021 09:24:00 GMT expires: - '-1' pragma: @@ -18492,15 +26969,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + x-ms-ratelimit-remaining-subscription-writes: + - '1135' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18510,31 +26988,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT22M51.5443155S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M41.0314808S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:36:12 GMT + - Wed, 20 Jan 2021 09:24:31 GMT expires: - '-1' pragma: @@ -18550,15 +27033,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + x-ms-ratelimit-remaining-subscription-writes: + - '1134' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18568,31 +27052,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M23.4833805S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M11.5010842S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:36:44 GMT + - Wed, 20 Jan 2021 09:25:01 GMT expires: - '-1' pragma: @@ -18608,15 +27097,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + x-ms-ratelimit-remaining-subscription-writes: + - '1133' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18626,31 +27116,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT23M54.2133779S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M41.9590352S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:37:14 GMT + - Wed, 20 Jan 2021 09:25:32 GMT expires: - '-1' pragma: @@ -18666,15 +27161,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + x-ms-ratelimit-remaining-subscription-writes: + - '1132' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18684,31 +27180,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M24.9818033S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M12.4525853S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:37:46 GMT + - Wed, 20 Jan 2021 09:26:02 GMT expires: - '-1' pragma: @@ -18724,15 +27225,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + x-ms-ratelimit-remaining-subscription-writes: + - '1131' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18742,31 +27244,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT24M57.5688272S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M42.8821235S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:38:18 GMT + - Wed, 20 Jan 2021 09:26:32 GMT expires: - '-1' pragma: @@ -18782,15 +27289,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + x-ms-ratelimit-remaining-subscription-writes: + - '1130' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18800,31 +27308,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M28.3592138S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M13.4024885S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:38:49 GMT + - Wed, 20 Jan 2021 09:27:03 GMT expires: - '-1' pragma: @@ -18840,15 +27353,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + x-ms-ratelimit-remaining-subscription-writes: + - '1129' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18858,31 +27372,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT25M59.3350982S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M43.8551428S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:39:19 GMT + - Wed, 20 Jan 2021 09:27:34 GMT expires: - '-1' pragma: @@ -18898,15 +27417,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + x-ms-ratelimit-remaining-subscription-writes: + - '1128' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18916,31 +27436,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT26M30.0863632S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M14.348365S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:39:51 GMT + - Wed, 20 Jan 2021 09:28:04 GMT expires: - '-1' pragma: @@ -18956,15 +27481,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + x-ms-ratelimit-remaining-subscription-writes: + - '1127' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -18974,31 +27500,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M0.823389S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.8685911S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M44.790269S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:40:21 GMT + - Wed, 20 Jan 2021 09:28:34 GMT expires: - '-1' pragma: @@ -19014,15 +27545,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + x-ms-ratelimit-remaining-subscription-writes: + - '1126' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19032,31 +27564,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT27M31.5660241S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M15.2601302S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:40:51 GMT + - Wed, 20 Jan 2021 09:29:05 GMT expires: - '-1' pragma: @@ -19072,15 +27609,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + x-ms-ratelimit-remaining-subscription-writes: + - '1125' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19090,31 +27628,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M3.5562092S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M45.864071S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1449' content-type: - application/json date: - - Fri, 18 Dec 2020 12:41:24 GMT + - Wed, 20 Jan 2021 09:29:35 GMT expires: - '-1' pragma: @@ -19130,15 +27673,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + x-ms-ratelimit-remaining-subscription-writes: + - '1124' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19148,31 +27692,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT28M34.3815396S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M16.3606299S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:41:54 GMT + - Wed, 20 Jan 2021 09:30:06 GMT expires: - '-1' pragma: @@ -19188,15 +27737,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + x-ms-ratelimit-remaining-subscription-writes: + - '1123' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19206,31 +27756,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M5.2426012S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M46.8214722S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:42:25 GMT + - Wed, 20 Jan 2021 09:30:37 GMT expires: - '-1' pragma: @@ -19246,15 +27801,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + x-ms-ratelimit-remaining-subscription-writes: + - '1122' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19264,31 +27820,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT29M36.0633736S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M17.2877683S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:42:58 GMT + - Wed, 20 Jan 2021 09:31:07 GMT expires: - '-1' pragma: @@ -19304,15 +27865,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + x-ms-ratelimit-remaining-subscription-writes: + - '1121' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19322,31 +27884,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M8.5315677S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M47.8180708S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:43:29 GMT + - Wed, 20 Jan 2021 09:31:37 GMT expires: - '-1' pragma: @@ -19362,15 +27929,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + x-ms-ratelimit-remaining-subscription-writes: + - '1120' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19380,31 +27948,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT30M39.3120466S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M18.3201948S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:43:59 GMT + - Wed, 20 Jan 2021 09:32:07 GMT expires: - '-1' pragma: @@ -19420,15 +27993,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + x-ms-ratelimit-remaining-subscription-writes: + - '1119' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19438,31 +28012,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M10.0742189S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M48.7839547S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:44:31 GMT + - Wed, 20 Jan 2021 09:32:39 GMT expires: - '-1' pragma: @@ -19478,15 +28057,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + x-ms-ratelimit-remaining-subscription-writes: + - '1118' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19496,31 +28076,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT31M40.807399S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.15 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.9291054S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M19.3213381S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:45:01 GMT + - Wed, 20 Jan 2021 09:33:09 GMT expires: - '-1' pragma: @@ -19536,15 +28121,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + x-ms-ratelimit-remaining-subscription-writes: + - '1117' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19554,31 +28140,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M11.7113586S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M49.8296814S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:45:32 GMT + - Wed, 20 Jan 2021 09:33:39 GMT expires: - '-1' pragma: @@ -19594,15 +28185,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + x-ms-ratelimit-remaining-subscription-writes: + - '1116' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19612,31 +28204,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT32M43.7506681S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M20.8226653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:46:04 GMT + - Wed, 20 Jan 2021 09:34:11 GMT expires: - '-1' pragma: @@ -19652,15 +28249,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + x-ms-ratelimit-remaining-subscription-writes: + - '1115' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19670,31 +28268,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M14.5097071S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M51.3540687S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:46:35 GMT + - Wed, 20 Jan 2021 09:34:41 GMT expires: - '-1' pragma: @@ -19710,15 +28313,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + x-ms-ratelimit-remaining-subscription-writes: + - '1114' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19728,31 +28332,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT33M45.2723058S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M21.8482645S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:47:05 GMT + - Wed, 20 Jan 2021 09:35:11 GMT expires: - '-1' pragma: @@ -19768,15 +28377,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + x-ms-ratelimit-remaining-subscription-writes: + - '1113' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19786,31 +28396,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M16.0884001S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT43M52.3224687S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:47:36 GMT + - Wed, 20 Jan 2021 09:35:41 GMT expires: - '-1' pragma: @@ -19826,15 +28441,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + x-ms-ratelimit-remaining-subscription-writes: + - '1112' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19844,31 +28460,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT34M46.7865943S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M22.9485473S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:48:07 GMT + - Wed, 20 Jan 2021 09:36:13 GMT expires: - '-1' pragma: @@ -19884,15 +28505,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + x-ms-ratelimit-remaining-subscription-writes: + - '1111' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19902,31 +28524,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M17.5862666S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT44M53.4191244S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:48:38 GMT + - Wed, 20 Jan 2021 09:36:43 GMT expires: - '-1' pragma: @@ -19942,15 +28569,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + x-ms-ratelimit-remaining-subscription-writes: + - '1110' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -19960,31 +28588,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT35M48.3148631S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M23.9154736S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:49:08 GMT + - Wed, 20 Jan 2021 09:37:13 GMT expires: - '-1' pragma: @@ -20000,15 +28633,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + x-ms-ratelimit-remaining-subscription-writes: + - '1109' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20018,31 +28652,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M19.1232783S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT45M54.4098667S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:49:39 GMT + - Wed, 20 Jan 2021 09:37:44 GMT expires: - '-1' pragma: @@ -20058,15 +28697,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + x-ms-ratelimit-remaining-subscription-writes: + - '1108' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20076,31 +28716,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT36M50.029365S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M15.6162749S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M24.8866563S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:50:10 GMT + - Wed, 20 Jan 2021 09:38:15 GMT expires: - '-1' pragma: @@ -20116,15 +28761,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + x-ms-ratelimit-remaining-subscription-writes: + - '1107' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20134,31 +28780,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M23.997353S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT46M55.4297802S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:50:44 GMT + - Wed, 20 Jan 2021 09:38:45 GMT expires: - '-1' pragma: @@ -20174,15 +28825,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + x-ms-ratelimit-remaining-subscription-writes: + - '1106' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20192,31 +28844,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT37M54.8637753S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M25.9221669S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:51:15 GMT + - Wed, 20 Jan 2021 09:39:16 GMT expires: - '-1' pragma: @@ -20232,15 +28889,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + x-ms-ratelimit-remaining-subscription-writes: + - '1105' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20250,31 +28908,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M25.8599685S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT47M56.9008468S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:51:47 GMT + - Wed, 20 Jan 2021 09:39:46 GMT expires: - '-1' pragma: @@ -20290,15 +28953,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + x-ms-ratelimit-remaining-subscription-writes: + - '1104' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20308,31 +28972,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT38M56.7971408S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M27.8738919S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:52:17 GMT + - Wed, 20 Jan 2021 09:40:17 GMT expires: - '-1' pragma: @@ -20348,15 +29017,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + x-ms-ratelimit-remaining-subscription-writes: + - '1103' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20366,31 +29036,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M27.6772894S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT48M58.3712583S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:52:48 GMT + - Wed, 20 Jan 2021 09:40:48 GMT expires: - '-1' pragma: @@ -20406,15 +29081,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + x-ms-ratelimit-remaining-subscription-writes: + - '1102' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20424,31 +29100,36 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT39M58.576882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M28.8213233S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Target resource group":"clitest.rg000002","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"InProgress","startTime":"2021-01-20T08:51:50.4124903Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1450' content-type: - application/json date: - - Fri, 18 Dec 2020 12:53:19 GMT + - Wed, 20 Jan 2021 09:41:18 GMT expires: - '-1' pragma: @@ -20464,15 +29145,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + x-ms-ratelimit-remaining-subscription-writes: + - '1101' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json @@ -20482,31 +29164,40 @@ interactions: - backup job wait Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT40M29.4232109S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M33.4839836S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Config + Blob Container Name":"clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f","Config + Blob Uri":"https://clitest000008.blob.core.windows.net/clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f/config-clitestvmhtb5m-2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000008.blob.core.windows.net/clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f/azuredeploy2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"Completed","startTime":"2021-01-20T08:51:50.4124903Z","endTime":"2021-01-20T09:41:23.8964739Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '2111' content-type: - application/json date: - - Fri, 18 Dec 2020 12:53:49 GMT + - Wed, 20 Jan 2021 09:41:49 GMT expires: - '-1' pragma: @@ -20522,8 +29213,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + x-ms-ratelimit-remaining-subscription-writes: + - '1100' x-powered-by: - ASP.NET status: @@ -20537,41 +29228,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup job show Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M25.3213924S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"location":"southeastasia","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-20T06%3A33%3A11.0267344Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '539' content-type: - application/json date: - - Fri, 18 Dec 2020 12:54:45 GMT + - Wed, 20 Jan 2021 09:42: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: @@ -20580,49 +29266,55 @@ interactions: - 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 + body: '{"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003", + "jobName": "2fffd40d-4832-4fb1-8181-dabdeb21ff6e"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup job show Connection: - keep-alive + Content-Length: + - '280' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -n --use-secondary-region User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupCrrJob?api-version=2018-12-20 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT41M56.2308685S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.65 + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/locations/eastasia/backupJobs/2fffd40d-4832-4fb1-8181-dabdeb21ff6e","name":"2fffd40d-4832-4fb1-8181-dabdeb21ff6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT49M33.4839836S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M19.0507417S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T12:13:20.6123979Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000008","Recovery + point time ":"1/20/2021 6:37:11 AM","Config Blob Name":"config-clitestvmhtb5m-2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Config + Blob Container Name":"clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f","Config + Blob Uri":"https://clitest000008.blob.core.windows.net/clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f/config-clitestvmhtb5m-2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Target + resource group":"clitest.rg000002","Template Blob Uri":"https://clitest000008.blob.core.windows.net/clitestvmhtb5m-f05353be16c64906ab4c51ea7b3c5c3f/azuredeploy2fffd40d-4832-4fb1-8181-dabdeb21ff6e.json","Subscription + Id of the vault":"f879818f-5b29-4a43-8961-34169783144f","Resource Group Name + of the vault":"clitest.rg000001","Vault name":"clitest-vault000003"},"internalPropertyBag":{"AdHoc":"AdHoc","restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"CrossRegionRestore","status":"Completed","startTime":"2021-01-20T08:51:50.4124903Z","endTime":"2021-01-20T09:41:23.8964739Z","activityId":"b6deace6-5afc-11eb-a70b-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1248' + - '2111' content-type: - application/json date: - - Fri, 18 Dec 2020 12:55:17 GMT + - Wed, 20 Jan 2021 09:42:22 GMT expires: - '-1' pragma: @@ -20638,8 +29330,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -20653,44 +29345,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup container list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M7.4765274S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Config Blob Name":"config-clitestvmg4sc6-38ec191f-95ba-4f90-bc35-29abcb127fad.json","Config - Blob Container Name":"clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e/config-clitestvmg4sc6-38ec191f-95ba-4f90-bc35-29abcb127fad.json","Template - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e/azuredeploy38ec191f-95ba-4f90-bc35-29abcb127fad.json"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T12:13:20.6123979Z","endTime":"2020-12-18T12:55:28.0889253Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' headers: cache-control: - no-cache content-length: - - '1802' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 12:55:48 GMT + - Wed, 20 Jan 2021 09:42: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: @@ -20700,7 +29384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '149' x-powered-by: - ASP.NET status: @@ -20714,44 +29398,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/38ec191f-95ba-4f90-bc35-29abcb127fad","name":"38ec191f-95ba-4f90-bc35-29abcb127fad","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT42M7.4765274S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000007","Recovery point time ":"12/18/2020 10:46:37 - AM","Config Blob Name":"config-clitestvmg4sc6-38ec191f-95ba-4f90-bc35-29abcb127fad.json","Config - Blob Container Name":"clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e","Config - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e/config-clitestvmg4sc6-38ec191f-95ba-4f90-bc35-29abcb127fad.json","Template - Blob Uri":"https://clitest000007.blob.core.windows.net/clitestvmg4sc6-17866927f8a544acaf0ee7b86e29d80e/azuredeploy38ec191f-95ba-4f90-bc35-29abcb127fad.json"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T12:13:20.6123979Z","endTime":"2020-12-18T12:55:28.0889253Z","activityId":"622e06fe-412a-11eb-8e3d-c03eba45757e"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1802' + - '2495' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:20 GMT + - Wed, 20 Jan 2021 09:42: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: @@ -20775,30 +29452,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup protection disable Connection: - keep-alive ParameterSetName: - - --backup-management-type -v -g --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2020-10-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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg000001","friendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"Microsoft.Compute/virtualMachines","protectableObjectType":"Microsoft.Compute/virtualMachines"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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-01-20T06:37:08.0535679Z","protectedItemDataId":"2261088489148466375","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2021-01-20T06:37:11.4880234Z"}}]}' headers: cache-control: - no-cache content-length: - - '1220' + - '2495' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:23 GMT + - Wed, 20 Jan 2021 09:42:25 GMT expires: - '-1' pragma: @@ -20828,52 +29507,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --backup-management-type --workload-type -g -v -c --query + - --backup-management-type --workload-type -g -v -c -i --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2495' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 12:56:24 GMT + - Wed, 20 Jan 2021 09:42:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperationResults/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-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: - - '149' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -20889,25 +29566,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","name":"VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","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":"clitest-vm000004","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","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":"2020-12-18T10:46:34.8479699Z","protectedItemDataId":"2260894975055081357","protectedItemType":"Microsoft.Compute/virtualMachines","backupManagementType":"AzureIaasVM","workloadType":"VM","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000004","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupPolicies/DefaultPolicy","policyName":"DefaultPolicy","lastRecoveryPoint":"2020-12-18T10:46:37.9564604Z"}}]}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2495' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:26 GMT + - Wed, 20 Jan 2021 09:42:27 GMT expires: - '-1' pragma: @@ -20940,47 +29616,49 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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-vault000003/backupFabrics/Azure/protectionContainers/IaasVMContainer%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004/protectedItems/VM%3Biaasvmcontainerv2%3Bclitest.rg000001%3Bclitest-vm000004?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 12:56:29 GMT + - Wed, 20 Jan 2021 09:42:29 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperationResults/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -20996,24 +29674,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:30 GMT + - Wed, 20 Jan 2021 09:42:30 GMT expires: - '-1' pragma: @@ -21029,7 +29707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -21050,24 +29728,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:31 GMT + - Wed, 20 Jan 2021 09:42:31 GMT expires: - '-1' pragma: @@ -21083,7 +29761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -21104,24 +29782,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:33 GMT + - Wed, 20 Jan 2021 09:42:33 GMT expires: - '-1' pragma: @@ -21137,7 +29815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -21158,24 +29836,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:34 GMT + - Wed, 20 Jan 2021 09:42:34 GMT expires: - '-1' pragma: @@ -21191,7 +29869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -21212,24 +29890,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:36 GMT + - Wed, 20 Jan 2021 09:42:35 GMT expires: - '-1' pragma: @@ -21245,7 +29923,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -21266,24 +29944,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:38 GMT + - Wed, 20 Jan 2021 09:42:36 GMT expires: - '-1' pragma: @@ -21299,7 +29977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -21320,24 +29998,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"InProgress","startTime":"2020-12-18T12:56:28.948564Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"InProgress","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:39 GMT + - Wed, 20 Jan 2021 09:42:38 GMT expires: - '-1' pragma: @@ -21353,7 +30031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -21374,24 +30052,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/7c3817f2-c540-4781-9d83-5d7768b5562a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupOperations/28a573f3-081c-41fa-8596-dfc02cad9272?api-version=2020-10-01 response: body: - string: '{"id":"7c3817f2-c540-4781-9d83-5d7768b5562a","name":"7c3817f2-c540-4781-9d83-5d7768b5562a","status":"Succeeded","startTime":"2020-12-18T12:56:28.948564Z","endTime":"2020-12-18T12:56:28.948564Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b44759db-962d-462c-9977-6a9c839ad4ce"}}' + string: '{"id":"28a573f3-081c-41fa-8596-dfc02cad9272","name":"28a573f3-081c-41fa-8596-dfc02cad9272","status":"Succeeded","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"2021-01-20T09:42:27.0407225Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"492a3ee0-3320-4f23-85a0-47bfd525d041"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:43 GMT + - Wed, 20 Jan 2021 09:42:39 GMT expires: - '-1' pragma: @@ -21407,7 +30085,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -21428,25 +30106,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/b44759db-962d-462c-9977-6a9c839ad4ce?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/492a3ee0-3320-4f23-85a0-47bfd525d041?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/b44759db-962d-462c-9977-6a9c839ad4ce","name":"b44759db-962d-462c-9977-6a9c839ad4ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.9128775S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000004","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T12:56:28.948564Z","endTime":"2020-12-18T12:56:40.8614415Z","activityId":"6f34abad-4130-11eb-9f1b-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupJobs/492a3ee0-3320-4f23-85a0-47bfd525d041","name":"492a3ee0-3320-4f23-85a0-47bfd525d041","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000004","duration":"PT11.6753546S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000004","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000004","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-20T09:42:27.0407225Z","endTime":"2021-01-20T09:42:38.7160771Z","activityId":"cd0cc749-5b03-11eb-9910-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '970' + - '971' content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:46 GMT + - Wed, 20 Jan 2021 09:42:40 GMT expires: - '-1' pragma: @@ -21485,8 +30163,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -21511,7 +30189,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:56:49 GMT + - Wed, 20 Jan 2021 09:42:41 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_rp.yaml index 4e25ae1e19b..080fae2ad51 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_rp.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T12%3A57%3A14.3315638Z''\"","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-01-16T15%3A39%3A19.3122354Z''\"","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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:57:15 GMT + - Sat, 16 Jan 2021 15:39:19 GMT expires: - '-1' pragma: @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T12:57:01Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-16T15:39:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:57:15 GMT + - Sat, 16 Jan 2021 15:39:19 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 12:57:16 GMT + - Sat, 16 Jan 2021 15:39:20 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 13:02:16 GMT + - Sat, 16 Jan 2021 15:44:20 GMT source-age: - - '0' + - '282' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HFM, MISS + - HIT, HIT x-cache-hits: - - 0, 0 + - 1, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 91802e1f4eefed80aa721dd746672087c2206a0b + - 44fee1f51d9ac4a65135fde93d3c7c9ad06e5243 x-frame-options: - deny x-github-request-id: - - 7E3E:2D63:4B2277:552D92:5FDCA72C + - 6C68:61E7:19D45A:1B41EF:6002E199 x-served-by: - - cache-mia11337-MIA + - cache-sin18045-SIN x-timer: - - S1608296236.250627,VS0,VE123 + - S1610811561.926983,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:57:16 GMT + - Sat, 16 Jan 2021 15:39:20 GMT expires: - '-1' pragma: @@ -293,26 +290,26 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_ya458ErUe4SPkmnuj5fjeGQbIwb8iwF0","name":"vm_deploy_ya458ErUe4SPkmnuj5fjeGQbIwb8iwF0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15719597681419610691","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T12:57:23.3989988Z","duration":"PT4.1682709S","correlationId":"f94745ea-b8fe-4209-b2f0-77f269321af4","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fEKZBGdbGfvMnQbModbVkPvxjhbB3UsE","name":"vm_deploy_fEKZBGdbGfvMnQbModbVkPvxjhbB3UsE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3709693464207849186","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-16T15:39:23.1058073Z","duration":"PT1.4098762S","correlationId":"ff0dc85f-77e0-433e-a709-8bc54f5c2439","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_ya458ErUe4SPkmnuj5fjeGQbIwb8iwF0/operationStatuses/08585933106462469048?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fEKZBGdbGfvMnQbModbVkPvxjhbB3UsE/operationStatuses/08585907953237817078?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2961' + - '2960' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:57:24 GMT + - Sat, 16 Jan 2021 15:39:23 GMT expires: - '-1' pragma: @@ -322,7 +319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -340,10 +337,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933106462469048?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907953237817078?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:57:56 GMT + - Sat, 16 Jan 2021 15:39:53 GMT expires: - '-1' pragma: @@ -383,22 +380,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933106462469048?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907953237817078?api-version=2020-10-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:26 GMT + - Sat, 16 Jan 2021 15:40:23 GMT expires: - '-1' pragma: @@ -426,22 +423,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907953237817078?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_ya458ErUe4SPkmnuj5fjeGQbIwb8iwF0","name":"vm_deploy_ya458ErUe4SPkmnuj5fjeGQbIwb8iwF0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15719597681419610691","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T12:58:20.5793707Z","duration":"PT1M1.3486428S","correlationId":"f94745ea-b8fe-4209-b2f0-77f269321af4","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"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '4087' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:27 GMT + - Sat, 16 Jan 2021 15:40:54 GMT expires: - '-1' pragma: @@ -469,77 +466,32 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907953237817078?api-version=2020-10-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\": \"baea9667-d576-4db0-92cf-d0aff077f881\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_a91263cb9ab246cd962a12284dbd7cc1\",\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_disk1_a91263cb9ab246cd962a12284dbd7cc1\"\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 - \ }\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\": \"2020-12-18T12:58:28+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_a91263cb9ab246cd962a12284dbd7cc1\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T12:57:52.0098039+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T12:58:17.5882737+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}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '3449' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:28 GMT + - Sat, 16 Jan 2021 15:41:24 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;31987 status: code: 200 message: OK @@ -557,66 +509,32 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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 + 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: "{\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/\\\"6df43f60-a4af-4262-b0f8-2ca622ba80bc\\\"\",\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\": \"a36bfafe-eda8-4ba1-9ade-64fa69a4d3d2\",\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/\\\"6df43f60-a4af-4262-b0f8-2ca622ba80bc\\\"\",\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\": - \"5zpavoru5d5uvgvbbqw0ongt2h.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C8-F4-33\",\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}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fEKZBGdbGfvMnQbModbVkPvxjhbB3UsE","name":"vm_deploy_fEKZBGdbGfvMnQbModbVkPvxjhbB3UsE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3709693464207849186","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-16T15:41:04.8555805Z","duration":"PT1M43.1596494S","correlationId":"ff0dc85f-77e0-433e-a709-8bc54f5c2439","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: - - '2825' + - '4087' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:28 GMT - etag: - - W/"6df43f60-a4af-4262-b0f8-2ca622ba80bc" + - Sat, 16 Jan 2021 15:41:24 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-arm-service-request-id: - - 14b93100-e7de-47a8-9b96-939345be8386 status: code: 200 message: OK @@ -634,71 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - 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/\\\"67d2c984-efea-4229-a8cc-5169bd0a7571\\\"\",\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\": \"e4c92eaa-c3e5-436d-b4e9-e86595adc827\",\r\n - \ \"ipAddress\": \"52.187.70.160\",\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: - - '1182' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 12:58:28 GMT - etag: - - W/"67d2c984-efea-4229-a8cc-5169bd0a7571" - 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: - - badef04f-0eb2-46b4-ab06-dc89472da859 - 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.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -707,16 +561,16 @@ interactions: \ \"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\": \"baea9667-d576-4db0-92cf-d0aff077f881\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"1943c619-27d5-4206-809a-bc45e2926e33\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_a91263cb9ab246cd962a12284dbd7cc1\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_21667acc8cbb406e8bcb78d2331c8109\",\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_disk1_a91263cb9ab246cd962a12284dbd7cc1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_21667acc8cbb406e8bcb78d2331c8109\"\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\": @@ -730,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T12:58:29+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T15:41:26+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_a91263cb9ab246cd962a12284dbd7cc1\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_21667acc8cbb406e8bcb78d2331c8109\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T12:57:52.0098039+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T15:39:47.5078354+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T12:58:17.5882737+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-16T15:41:02.1640818+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}" @@ -747,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:29 GMT + - Sat, 16 Jan 2021 15:41:26 GMT expires: - '-1' pragma: @@ -768,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31986 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31980 status: code: 200 message: OK @@ -776,443 +630,137 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - 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''2020-12-18T12%3A57%3A14.3315638Z''\"","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: - - Fri, 18 Dec 2020 12:58: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 - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2019-06-15 - 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":["2020-12-18T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-18T22: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: - - Fri, 18 Dec 2020 12:58: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-vm - Connection: - - keep-alive - ParameterSetName: - - -g -v --vm -p - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 12:58: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.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=2016-12-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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 12:58: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/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 12:58: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/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 12:58: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/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 12:58: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/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-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 + - vm create Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/backupFabrics/Azure/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 + 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: '' + 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/\\\"d1f0e602-9835-464b-ae81-b97f395da86a\\\"\",\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\": \"e527d79e-ca41-4de4-994d-04a508b7f47f\",\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/\\\"d1f0e602-9835-464b-ae81-b97f395da86a\\\"\",\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\": + \"xwbjunpv5xnu3easjlxltw5tph.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-55-D3-06\",\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: - - '0' + - '2825' + content-type: + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:43 GMT + - Sat, 16 Jan 2021 15:41:25 GMT + etag: + - W/"d1f0e602-9835-464b-ae81-b97f395da86a" 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 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-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - c3acd034-0cf9-45e0-9b32-f9311068b583 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-vm + - vm create Connection: - keep-alive ParameterSetName: - - -g -v --vm -p + - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/backupFabrics/Azure/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 + 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: '' + 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/\\\"9d960fa1-30af-4fd0-87da-7ec0b677c185\\\"\",\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\": \"29652cd8-919a-4b77-b126-65a2ebe8471c\",\r\n + \ \"ipAddress\": \"13.67.94.255\",\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: - - '0' + - '1181' + content-type: + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:44 GMT + - Sat, 16 Jan 2021 15:41:26 GMT + etag: + - W/"9d960fa1-30af-4fd0-87da-7ec0b677c185" 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 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-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET + x-ms-arm-service-request-id: + - 254eb7ac-cb76-4035-b60d-c7d64b6ccb3f status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1227,39 +775,80 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: body: - string: '' + 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\": \"1943c619-27d5-4206-809a-bc45e2926e33\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_21667acc8cbb406e8bcb78d2331c8109\",\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_21667acc8cbb406e8bcb78d2331c8109\"\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 + \ }\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-01-16T15:41:27+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"clitest-vm000003_OsDisk_1_21667acc8cbb406e8bcb78d2331c8109\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-16T15:39:47.5078354+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-01-16T15:41:02.1640818+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: - - '0' + - '3428' + content-type: + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 12:58:46 GMT + - Sat, 16 Jan 2021 15:41: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/operationResults/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 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-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31979 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1274,35 +863,41 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c4edf6aa-d76a-4b21-8c0f-c14746dfa780?api-version=2016-12-01 + 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: '' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-16T15%3A39%3A19.3122354Z''\"","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: - - Fri, 18 Dec 2020 12:58:48 GMT + - Sat, 16 Jan 2021 15:41: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: - - '143' - x-powered-by: - - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -1317,24 +912,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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/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"}}]}' + 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-01-17T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1271' + - '828' content-type: - application/json date: - - Fri, 18 Dec 2020 12:58:50 GMT + - Sat, 16 Jan 2021 15:41:28 GMT expires: - '-1' pragma: @@ -1357,9 +952,7 @@ interactions: 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"}}' + body: null headers: Accept: - application/json @@ -1369,48 +962,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","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;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '35316' + content-type: + - application/json date: - - Fri, 18 Dec 2020 12:58:52 GMT + - Sat, 16 Jan 2021 15:41: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1425,24 +1018,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","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;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '35316' content-type: - application/json date: - - Fri, 18 Dec 2020 12:58:54 GMT + - Sat, 16 Jan 2021 15:41:29 GMT expires: - '-1' pragma: @@ -1458,14 +1051,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + 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 @@ -1475,48 +1070,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + 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/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 12:58:55 GMT + - Sat, 16 Jan 2021 15:41: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-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: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1531,15 +1126,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1548,7 +1143,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:58:57 GMT + - Sat, 16 Jan 2021 15:41:31 GMT expires: - '-1' pragma: @@ -1564,7 +1159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '114' x-powered-by: - ASP.NET status: @@ -1584,15 +1179,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1601,7 +1196,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:58:58 GMT + - Sat, 16 Jan 2021 15:41:33 GMT expires: - '-1' pragma: @@ -1617,7 +1212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '113' x-powered-by: - ASP.NET status: @@ -1637,15 +1232,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1654,7 +1249,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:00 GMT + - Sat, 16 Jan 2021 15:41:34 GMT expires: - '-1' pragma: @@ -1670,7 +1265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '112' x-powered-by: - ASP.NET status: @@ -1690,15 +1285,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1707,7 +1302,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:01 GMT + - Sat, 16 Jan 2021 15:41:35 GMT expires: - '-1' pragma: @@ -1723,7 +1318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '111' x-powered-by: - ASP.NET status: @@ -1743,15 +1338,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1760,7 +1355,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:03 GMT + - Sat, 16 Jan 2021 15:41:36 GMT expires: - '-1' pragma: @@ -1776,7 +1371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '110' x-powered-by: - ASP.NET status: @@ -1796,15 +1391,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1813,7 +1408,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:04 GMT + - Sat, 16 Jan 2021 15:41:37 GMT expires: - '-1' pragma: @@ -1829,7 +1424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '109' x-powered-by: - ASP.NET status: @@ -1849,15 +1444,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1866,7 +1461,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:06 GMT + - Sat, 16 Jan 2021 15:41:38 GMT expires: - '-1' pragma: @@ -1882,7 +1477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '108' x-powered-by: - ASP.NET status: @@ -1902,15 +1497,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1919,7 +1514,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:07 GMT + - Sat, 16 Jan 2021 15:41:40 GMT expires: - '-1' pragma: @@ -1935,7 +1530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '107' x-powered-by: - ASP.NET status: @@ -1955,15 +1550,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +1567,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:09 GMT + - Sat, 16 Jan 2021 15:41:41 GMT expires: - '-1' pragma: @@ -1988,7 +1583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '106' x-powered-by: - ASP.NET status: @@ -2008,15 +1603,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2025,7 +1620,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:10 GMT + - Sat, 16 Jan 2021 15:41:42 GMT expires: - '-1' pragma: @@ -2041,7 +1636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '105' x-powered-by: - ASP.NET status: @@ -2061,15 +1656,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2078,7 +1673,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:12 GMT + - Sat, 16 Jan 2021 15:41:44 GMT expires: - '-1' pragma: @@ -2094,7 +1689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '104' x-powered-by: - ASP.NET status: @@ -2114,15 +1709,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2131,7 +1726,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:13 GMT + - Sat, 16 Jan 2021 15:41:45 GMT expires: - '-1' pragma: @@ -2147,7 +1742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '103' x-powered-by: - ASP.NET status: @@ -2167,15 +1762,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2184,7 +1779,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:15 GMT + - Sat, 16 Jan 2021 15:41:46 GMT expires: - '-1' pragma: @@ -2200,7 +1795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '102' x-powered-by: - ASP.NET status: @@ -2220,15 +1815,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2237,7 +1832,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:16 GMT + - Sat, 16 Jan 2021 15:41:48 GMT expires: - '-1' pragma: @@ -2253,7 +1848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '101' x-powered-by: - ASP.NET status: @@ -2273,15 +1868,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2290,7 +1885,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:18 GMT + - Sat, 16 Jan 2021 15:41:49 GMT expires: - '-1' pragma: @@ -2306,7 +1901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '100' x-powered-by: - ASP.NET status: @@ -2326,15 +1921,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2343,7 +1938,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:19 GMT + - Sat, 16 Jan 2021 15:41:50 GMT expires: - '-1' pragma: @@ -2359,7 +1954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '99' x-powered-by: - ASP.NET status: @@ -2379,15 +1974,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2396,7 +1991,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:21 GMT + - Sat, 16 Jan 2021 15:41:51 GMT expires: - '-1' pragma: @@ -2412,7 +2007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '98' x-powered-by: - ASP.NET status: @@ -2432,15 +2027,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2449,7 +2044,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:23 GMT + - Sat, 16 Jan 2021 15:41:53 GMT expires: - '-1' pragma: @@ -2465,7 +2060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '97' x-powered-by: - ASP.NET status: @@ -2485,15 +2080,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2502,7 +2097,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:24 GMT + - Sat, 16 Jan 2021 15:41:54 GMT expires: - '-1' pragma: @@ -2518,7 +2113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '96' x-powered-by: - ASP.NET status: @@ -2538,15 +2133,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2555,7 +2150,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:26 GMT + - Sat, 16 Jan 2021 15:41:55 GMT expires: - '-1' pragma: @@ -2571,7 +2166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '95' x-powered-by: - ASP.NET status: @@ -2591,15 +2186,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2608,7 +2203,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:28 GMT + - Sat, 16 Jan 2021 15:41:57 GMT expires: - '-1' pragma: @@ -2624,7 +2219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '94' x-powered-by: - ASP.NET status: @@ -2644,15 +2239,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2661,7 +2256,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:29 GMT + - Sat, 16 Jan 2021 15:41:58 GMT expires: - '-1' pragma: @@ -2677,7 +2272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '93' x-powered-by: - ASP.NET status: @@ -2697,15 +2292,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2714,7 +2309,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:31 GMT + - Sat, 16 Jan 2021 15:41:59 GMT expires: - '-1' pragma: @@ -2730,7 +2325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '92' x-powered-by: - ASP.NET status: @@ -2750,15 +2345,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2767,7 +2362,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:32 GMT + - Sat, 16 Jan 2021 15:42:00 GMT expires: - '-1' pragma: @@ -2783,7 +2378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '91' x-powered-by: - ASP.NET status: @@ -2803,15 +2398,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2820,7 +2415,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:34 GMT + - Sat, 16 Jan 2021 15:42:01 GMT expires: - '-1' pragma: @@ -2836,7 +2431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '90' x-powered-by: - ASP.NET status: @@ -2856,15 +2451,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2873,7 +2468,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:35 GMT + - Sat, 16 Jan 2021 15:42:02 GMT expires: - '-1' pragma: @@ -2889,7 +2484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '89' x-powered-by: - ASP.NET status: @@ -2909,15 +2504,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2926,7 +2521,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:37 GMT + - Sat, 16 Jan 2021 15:42:03 GMT expires: - '-1' pragma: @@ -2942,7 +2537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '88' x-powered-by: - ASP.NET status: @@ -2962,15 +2557,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2979,7 +2574,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:38 GMT + - Sat, 16 Jan 2021 15:42:05 GMT expires: - '-1' pragma: @@ -2995,7 +2590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '87' x-powered-by: - ASP.NET status: @@ -3015,15 +2610,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3032,7 +2627,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:40 GMT + - Sat, 16 Jan 2021 15:42:06 GMT expires: - '-1' pragma: @@ -3048,7 +2643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '86' x-powered-by: - ASP.NET status: @@ -3068,15 +2663,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3085,7 +2680,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:41 GMT + - Sat, 16 Jan 2021 15:42:07 GMT expires: - '-1' pragma: @@ -3101,7 +2696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '85' x-powered-by: - ASP.NET status: @@ -3121,15 +2716,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3138,7 +2733,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:43 GMT + - Sat, 16 Jan 2021 15:42:09 GMT expires: - '-1' pragma: @@ -3154,7 +2749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '84' x-powered-by: - ASP.NET status: @@ -3174,15 +2769,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3191,7 +2786,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:44 GMT + - Sat, 16 Jan 2021 15:42:10 GMT expires: - '-1' pragma: @@ -3207,7 +2802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '83' x-powered-by: - ASP.NET status: @@ -3227,15 +2822,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3244,7 +2839,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:46 GMT + - Sat, 16 Jan 2021 15:42:11 GMT expires: - '-1' pragma: @@ -3260,7 +2855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '82' x-powered-by: - ASP.NET status: @@ -3280,15 +2875,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3297,7 +2892,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:47 GMT + - Sat, 16 Jan 2021 15:42:13 GMT expires: - '-1' pragma: @@ -3313,7 +2908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '81' x-powered-by: - ASP.NET status: @@ -3333,15 +2928,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3350,7 +2945,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:49 GMT + - Sat, 16 Jan 2021 15:42:14 GMT expires: - '-1' pragma: @@ -3366,7 +2961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '80' x-powered-by: - ASP.NET status: @@ -3386,15 +2981,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3403,7 +2998,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:50 GMT + - Sat, 16 Jan 2021 15:42:15 GMT expires: - '-1' pragma: @@ -3419,7 +3014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '79' x-powered-by: - ASP.NET status: @@ -3439,15 +3034,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3456,7 +3051,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:52 GMT + - Sat, 16 Jan 2021 15:42:16 GMT expires: - '-1' pragma: @@ -3472,7 +3067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '78' x-powered-by: - ASP.NET status: @@ -3492,15 +3087,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3509,7 +3104,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:53 GMT + - Sat, 16 Jan 2021 15:42:17 GMT expires: - '-1' pragma: @@ -3525,7 +3120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '77' x-powered-by: - ASP.NET status: @@ -3545,15 +3140,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3562,7 +3157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:54 GMT + - Sat, 16 Jan 2021 15:42:19 GMT expires: - '-1' pragma: @@ -3578,7 +3173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '76' x-powered-by: - ASP.NET status: @@ -3598,15 +3193,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3615,7 +3210,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:56 GMT + - Sat, 16 Jan 2021 15:42:20 GMT expires: - '-1' pragma: @@ -3631,7 +3226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '75' x-powered-by: - ASP.NET status: @@ -3651,15 +3246,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3668,7 +3263,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:57 GMT + - Sat, 16 Jan 2021 15:42:22 GMT expires: - '-1' pragma: @@ -3684,7 +3279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '74' x-powered-by: - ASP.NET status: @@ -3704,15 +3299,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3721,7 +3316,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 12:59:59 GMT + - Sat, 16 Jan 2021 15:42:23 GMT expires: - '-1' pragma: @@ -3737,7 +3332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '73' x-powered-by: - ASP.NET status: @@ -3757,15 +3352,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3774,7 +3369,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:00 GMT + - Sat, 16 Jan 2021 15:42:24 GMT expires: - '-1' pragma: @@ -3790,7 +3385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '72' x-powered-by: - ASP.NET status: @@ -3810,15 +3405,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3827,7 +3422,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:02 GMT + - Sat, 16 Jan 2021 15:42:25 GMT expires: - '-1' pragma: @@ -3843,7 +3438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '71' x-powered-by: - ASP.NET status: @@ -3863,15 +3458,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3880,7 +3475,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:03 GMT + - Sat, 16 Jan 2021 15:42:27 GMT expires: - '-1' pragma: @@ -3896,7 +3491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '70' x-powered-by: - ASP.NET status: @@ -3916,15 +3511,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3933,7 +3528,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:05 GMT + - Sat, 16 Jan 2021 15:42:28 GMT expires: - '-1' pragma: @@ -3949,7 +3544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '69' x-powered-by: - ASP.NET status: @@ -3969,15 +3564,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3986,7 +3581,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:06 GMT + - Sat, 16 Jan 2021 15:42:29 GMT expires: - '-1' pragma: @@ -4002,7 +3597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '68' x-powered-by: - ASP.NET status: @@ -4022,15 +3617,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4039,7 +3634,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:08 GMT + - Sat, 16 Jan 2021 15:42:30 GMT expires: - '-1' pragma: @@ -4055,7 +3650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '67' x-powered-by: - ASP.NET status: @@ -4075,15 +3670,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4092,7 +3687,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:09 GMT + - Sat, 16 Jan 2021 15:42:32 GMT expires: - '-1' pragma: @@ -4108,7 +3703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '66' x-powered-by: - ASP.NET status: @@ -4128,15 +3723,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4145,7 +3740,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:11 GMT + - Sat, 16 Jan 2021 15:42:33 GMT expires: - '-1' pragma: @@ -4161,7 +3756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '65' x-powered-by: - ASP.NET status: @@ -4181,15 +3776,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4198,7 +3793,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:12 GMT + - Sat, 16 Jan 2021 15:42:34 GMT expires: - '-1' pragma: @@ -4214,7 +3809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '64' x-powered-by: - ASP.NET status: @@ -4234,15 +3829,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4251,7 +3846,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:14 GMT + - Sat, 16 Jan 2021 15:42:36 GMT expires: - '-1' pragma: @@ -4267,7 +3862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '63' x-powered-by: - ASP.NET status: @@ -4287,15 +3882,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4304,7 +3899,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:15 GMT + - Sat, 16 Jan 2021 15:42:37 GMT expires: - '-1' pragma: @@ -4320,7 +3915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '62' x-powered-by: - ASP.NET status: @@ -4340,15 +3935,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4357,7 +3952,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:17 GMT + - Sat, 16 Jan 2021 15:42:38 GMT expires: - '-1' pragma: @@ -4373,7 +3968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '61' x-powered-by: - ASP.NET status: @@ -4393,15 +3988,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4410,7 +4005,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:18 GMT + - Sat, 16 Jan 2021 15:42:39 GMT expires: - '-1' pragma: @@ -4426,7 +4021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '60' x-powered-by: - ASP.NET status: @@ -4446,15 +4041,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4463,7 +4058,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:20 GMT + - Sat, 16 Jan 2021 15:42:40 GMT expires: - '-1' pragma: @@ -4479,7 +4074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '59' x-powered-by: - ASP.NET status: @@ -4499,15 +4094,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4516,7 +4111,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:21 GMT + - Sat, 16 Jan 2021 15:42:41 GMT expires: - '-1' pragma: @@ -4532,7 +4127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '58' x-powered-by: - ASP.NET status: @@ -4552,15 +4147,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"InProgress","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4569,7 +4164,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:23 GMT + - Sat, 16 Jan 2021 15:42:43 GMT expires: - '-1' pragma: @@ -4585,7 +4180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '57' x-powered-by: - ASP.NET status: @@ -4605,24 +4200,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43f735a5-5564-4c00-b8ed-989f22235c07?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"43f735a5-5564-4c00-b8ed-989f22235c07","name":"43f735a5-5564-4c00-b8ed-989f22235c07","status":"Succeeded","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"2020-12-18T12:58:52.8270619Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e9b15758-2703-48b1-a6af-8af1af61e1f3"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:24 GMT + - Sat, 16 Jan 2021 15:42:44 GMT expires: - '-1' pragma: @@ -4638,7 +4233,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '56' x-powered-by: - ASP.NET status: @@ -4658,32 +4253,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/e9b15758-2703-48b1-a6af-8af1af61e1f3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e9b15758-2703-48b1-a6af-8af1af61e1f3","name":"e9b15758-2703-48b1-a6af-8af1af61e1f3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.0212156S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T12:58:52.8270619Z","endTime":"2020-12-18T13:00:24.8482775Z","activityId":"b9640b00-4130-11eb-979b-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:27 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -4693,7 +4286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '55' x-powered-by: - ASP.NET status: @@ -4707,30 +4300,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-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","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":"2260912567260758581","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"}}]}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:28 GMT + - Sat, 16 Jan 2021 15:42:46 GMT expires: - '-1' pragma: @@ -4746,66 +4339,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '54' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm 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 + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' 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/fc202168-6671-4a8b-87fe-d1a0fa63bde3?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 13:00:31 GMT + - Sat, 16 Jan 2021 15:42: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/fc202168-6671-4a8b-87fe-d1a0fa63bde3?api-version=2016-12-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: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4814,30 +4406,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/fc202168-6671-4a8b-87fe-d1a0fa63bde3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"fc202168-6671-4a8b-87fe-d1a0fa63bde3","name":"fc202168-6671-4a8b-87fe-d1a0fa63bde3","status":"Succeeded","startTime":"2020-12-18T13:00:31.6246476Z","endTime":"2020-12-18T13:00:31.6246476Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7e3481dc-85a3-4db2-8cbb-353f35470fe2"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:32 GMT + - Sat, 16 Jan 2021 15:42:49 GMT expires: - '-1' pragma: @@ -4853,7 +4445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '52' x-powered-by: - ASP.NET status: @@ -4867,40 +4459,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.6201842S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:33 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -4910,7 +4498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '51' x-powered-by: - ASP.NET status: @@ -4924,40 +4512,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.8290492S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:35 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -4967,7 +4551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '50' x-powered-by: - ASP.NET status: @@ -4981,40 +4565,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.4814848S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1156' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:00:35 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -5024,7 +4604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '49' x-powered-by: - ASP.NET status: @@ -5038,40 +4618,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35.1455881S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1157' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:01:07 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -5081,7 +4657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '48' x-powered-by: - ASP.NET status: @@ -5095,40 +4671,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M5.8577343S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:01:37 GMT + - Sat, 16 Jan 2021 15: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: @@ -5138,7 +4710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '47' x-powered-by: - ASP.NET status: @@ -5152,40 +4724,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M36.5950114S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:02:08 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -5195,7 +4763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '46' x-powered-by: - ASP.NET status: @@ -5209,40 +4777,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M7.4450015S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:02:38 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -5252,7 +4816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '45' x-powered-by: - ASP.NET status: @@ -5266,40 +4830,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M38.3640941S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:03:10 GMT + - Sat, 16 Jan 2021 15:42: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: @@ -5309,7 +4869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '44' x-powered-by: - ASP.NET status: @@ -5323,40 +4883,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M9.2286119S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1158' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:03:40 GMT + - Sat, 16 Jan 2021 15: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: @@ -5366,7 +4922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '43' x-powered-by: - ASP.NET status: @@ -5380,40 +4936,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M39.9931097S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:04:11 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5423,7 +4975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '42' x-powered-by: - ASP.NET status: @@ -5437,40 +4989,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M10.9475153S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"InProgress","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 13:04:42 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5480,7 +5028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '41' x-powered-by: - ASP.NET status: @@ -5494,40 +5042,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/eb63b97a-9da2-4d73-ab0c-bc54b5bec46f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M41.9656024S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","name":"eb63b97a-9da2-4d73-ab0c-bc54b5bec46f","status":"Succeeded","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"2021-01-16T15:41:31.2550595Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"adc73c0d-9da0-4f71-a1b6-d8cb613938b3"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 13:05:13 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5537,7 +5081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '40' x-powered-by: - ASP.NET status: @@ -5551,33 +5095,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/adc73c0d-9da0-4f71-a1b6-d8cb613938b3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M13.9000389S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/adc73c0d-9da0-4f71-a1b6-d8cb613938b3","name":"adc73c0d-9da0-4f71-a1b6-d8cb613938b3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M32.138014S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T15:41:31.2550595Z","endTime":"2021-01-16T15:43:03.3930735Z","activityId":"4b7a2cb4-5811-11eb-b734-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '969' content-type: - application/json date: - - Fri, 18 Dec 2020 13:05:45 GMT + - Sat, 16 Jan 2021 15:43:04 GMT expires: - '-1' pragma: @@ -5594,7 +5136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '148' x-powered-by: - ASP.NET status: @@ -5608,40 +5150,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M44.991644S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + 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":"319190202","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"}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '1958' content-type: - application/json date: - - Fri, 18 Dec 2020 13:06:16 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5651,69 +5189,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-15T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M16.0987893S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + 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/d4ab18ca-f756-48b7-a5e2-894bc0e2cae3?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1159' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 13:06:48 GMT + - Sat, 16 Jan 2021 15:43: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/d4ab18ca-f756-48b7-a5e2-894bc0e2cae3?api-version=2020-10-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: - - '136' + 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: @@ -5722,40 +5257,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4ab18ca-f756-48b7-a5e2-894bc0e2cae3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M47.4387237S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"d4ab18ca-f756-48b7-a5e2-894bc0e2cae3","name":"d4ab18ca-f756-48b7-a5e2-894bc0e2cae3","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1159' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 13:07:19 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5765,7 +5296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '149' x-powered-by: - ASP.NET status: @@ -5779,40 +5310,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4ab18ca-f756-48b7-a5e2-894bc0e2cae3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M18.3845007S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"d4ab18ca-f756-48b7-a5e2-894bc0e2cae3","name":"d4ab18ca-f756-48b7-a5e2-894bc0e2cae3","status":"Succeeded","startTime":"2021-01-16T15:43:06.276263Z","endTime":"2021-01-16T15:43:06.276263Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f45f2794-7f5d-419c-8992-833a061db78d"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '302' content-type: - application/json date: - - Fri, 18 Dec 2020 13:07:50 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -5822,7 +5349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '148' x-powered-by: - ASP.NET status: @@ -5836,33 +5363,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M49.2255863S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.8519106S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1155' content-type: - application/json date: - - Fri, 18 Dec 2020 13:08:21 GMT + - Sat, 16 Jan 2021 15:43:07 GMT expires: - '-1' pragma: @@ -5879,7 +5406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '149' x-powered-by: - ASP.NET status: @@ -5899,27 +5426,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M20.393882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.8612749S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1155' content-type: - application/json date: - - Fri, 18 Dec 2020 13:08:51 GMT + - Sat, 16 Jan 2021 15:43:09 GMT expires: - '-1' pragma: @@ -5936,7 +5463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '148' x-powered-by: - ASP.NET status: @@ -5956,27 +5483,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M51.2965416S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.2824208S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1155' content-type: - application/json date: - - Fri, 18 Dec 2020 13:09:22 GMT + - Sat, 16 Jan 2021 15:43:09 GMT expires: - '-1' pragma: @@ -5993,7 +5520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '147' x-powered-by: - ASP.NET status: @@ -6013,27 +5540,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M22.1069901S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.7229329S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 13:09:54 GMT + - Sat, 16 Jan 2021 15:43:40 GMT expires: - '-1' pragma: @@ -6050,7 +5577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '146' x-powered-by: - ASP.NET status: @@ -6070,27 +5597,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M52.9472321S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.135667S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 13:10:24 GMT + - Sat, 16 Jan 2021 15:44:10 GMT expires: - '-1' pragma: @@ -6107,7 +5634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '145' x-powered-by: - ASP.NET status: @@ -6127,27 +5654,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M23.8178851S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.6022223S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:10:55 GMT + - Sat, 16 Jan 2021 15:44:41 GMT expires: - '-1' pragma: @@ -6164,7 +5691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '144' x-powered-by: - ASP.NET status: @@ -6184,27 +5711,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M56.2976317S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.0849667S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:11:28 GMT + - Sat, 16 Jan 2021 15:45:11 GMT expires: - '-1' pragma: @@ -6221,7 +5748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '143' x-powered-by: - ASP.NET status: @@ -6241,27 +5768,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M27.0894022S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.5171168S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:11:59 GMT + - Sat, 16 Jan 2021 15:45:42 GMT expires: - '-1' pragma: @@ -6278,7 +5805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '142' x-powered-by: - ASP.NET status: @@ -6298,27 +5825,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M58.4479847S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M5.963413S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 13:12:30 GMT + - Sat, 16 Jan 2021 15:46:11 GMT expires: - '-1' pragma: @@ -6335,7 +5862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '141' x-powered-by: - ASP.NET status: @@ -6355,27 +5882,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M29.3713618S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.4230596S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:13:00 GMT + - Sat, 16 Jan 2021 15:46:42 GMT expires: - '-1' pragma: @@ -6392,7 +5919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '140' x-powered-by: - ASP.NET status: @@ -6412,27 +5939,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M0.2191612S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M6.9571367S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:13:32 GMT + - Sat, 16 Jan 2021 15:47:13 GMT expires: - '-1' pragma: @@ -6449,7 +5976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '139' x-powered-by: - ASP.NET status: @@ -6469,27 +5996,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M31.618253S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.448492S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:14:02 GMT + - Sat, 16 Jan 2021 15:47:43 GMT expires: - '-1' pragma: @@ -6506,7 +6033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '138' x-powered-by: - ASP.NET status: @@ -6526,27 +6053,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M2.3717427S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M8.3054411S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:14:34 GMT + - Sat, 16 Jan 2021 15:48:15 GMT expires: - '-1' pragma: @@ -6563,7 +6090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '137' x-powered-by: - ASP.NET status: @@ -6583,27 +6110,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M33.2495514S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.7759704S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:15:04 GMT + - Sat, 16 Jan 2021 15:48:44 GMT expires: - '-1' pragma: @@ -6620,7 +6147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '136' x-powered-by: - ASP.NET status: @@ -6640,27 +6167,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M4.0258883S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M9.6014202S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:15:36 GMT + - Sat, 16 Jan 2021 15:49:16 GMT expires: - '-1' pragma: @@ -6677,7 +6204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '135' x-powered-by: - ASP.NET status: @@ -6697,27 +6224,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M34.9517119S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M40.1480721S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:16:06 GMT + - Sat, 16 Jan 2021 15:49:46 GMT expires: - '-1' pragma: @@ -6734,7 +6261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '134' x-powered-by: - ASP.NET status: @@ -6754,18 +6281,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M5.7280924S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M10.5875864S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -6774,7 +6301,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:16:37 GMT + - Sat, 16 Jan 2021 15:50:16 GMT expires: - '-1' pragma: @@ -6791,7 +6318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '133' x-powered-by: - ASP.NET status: @@ -6811,27 +6338,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M37.859523S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M41.0674082S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:17:09 GMT + - Sat, 16 Jan 2021 15:50:47 GMT expires: - '-1' pragma: @@ -6848,7 +6375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '132' x-powered-by: - ASP.NET status: @@ -6868,27 +6395,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M8.8275393S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M11.5044114S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:17:40 GMT + - Sat, 16 Jan 2021 15:51:18 GMT expires: - '-1' pragma: @@ -6905,7 +6432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '131' x-powered-by: - ASP.NET status: @@ -6925,27 +6452,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M40.0129972S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M42.0080195S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:18:11 GMT + - Sat, 16 Jan 2021 15:51:48 GMT expires: - '-1' pragma: @@ -6962,7 +6489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '130' x-powered-by: - ASP.NET status: @@ -6982,27 +6509,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M10.9585906S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M12.5134538S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:18:42 GMT + - Sat, 16 Jan 2021 15:52:18 GMT expires: - '-1' pragma: @@ -7019,7 +6546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '129' x-powered-by: - ASP.NET status: @@ -7039,27 +6566,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M41.8500682S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M43.0367501S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:19:19 GMT + - Sat, 16 Jan 2021 15:52:49 GMT expires: - '-1' pragma: @@ -7076,7 +6603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '128' x-powered-by: - ASP.NET status: @@ -7096,27 +6623,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M18.7168499S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M14.3290693S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:19:50 GMT + - Sat, 16 Jan 2021 15:53:20 GMT expires: - '-1' pragma: @@ -7133,7 +6660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '127' x-powered-by: - ASP.NET status: @@ -7153,27 +6680,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M49.5662016S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M44.8947846S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:20:21 GMT + - Sat, 16 Jan 2021 15:53:51 GMT expires: - '-1' pragma: @@ -7190,7 +6717,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '126' x-powered-by: - ASP.NET status: @@ -7210,27 +6737,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M20.3565453S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M15.9887854S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:20:51 GMT + - Sat, 16 Jan 2021 15:54:22 GMT expires: - '-1' pragma: @@ -7247,7 +6774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '125' x-powered-by: - ASP.NET status: @@ -7267,27 +6794,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M51.1635187S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M46.4474851S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:21:22 GMT + - Sat, 16 Jan 2021 15:54:52 GMT expires: - '-1' pragma: @@ -7304,7 +6831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '124' x-powered-by: - ASP.NET status: @@ -7324,27 +6851,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M21.9316325S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M16.9791454S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:21:53 GMT + - Sat, 16 Jan 2021 15:55:22 GMT expires: - '-1' pragma: @@ -7361,7 +6888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '123' x-powered-by: - ASP.NET status: @@ -7381,27 +6908,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M52.7980339S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M47.5523365S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:22:24 GMT + - Sat, 16 Jan 2021 15:55:53 GMT expires: - '-1' pragma: @@ -7418,7 +6945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '122' x-powered-by: - ASP.NET status: @@ -7438,27 +6965,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M24.5714256S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M18.1382578S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:22:55 GMT + - Sat, 16 Jan 2021 15:56:24 GMT expires: - '-1' pragma: @@ -7475,7 +7002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '121' x-powered-by: - ASP.NET status: @@ -7495,27 +7022,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M55.4779239S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M48.6535179S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:23:27 GMT + - Sat, 16 Jan 2021 15:56:55 GMT expires: - '-1' pragma: @@ -7532,7 +7059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '120' x-powered-by: - ASP.NET status: @@ -7552,27 +7079,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M26.4020507S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M19.2498784S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:23:58 GMT + - Sat, 16 Jan 2021 15:57:25 GMT expires: - '-1' pragma: @@ -7589,7 +7116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '119' x-powered-by: - ASP.NET status: @@ -7609,27 +7136,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M57.1897574S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M49.7680364S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:24:28 GMT + - Sat, 16 Jan 2021 15:57:55 GMT expires: - '-1' pragma: @@ -7646,7 +7173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '118' x-powered-by: - ASP.NET status: @@ -7666,27 +7193,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M28.2156907S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M20.4945148S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:24:59 GMT + - Sat, 16 Jan 2021 15:58:26 GMT expires: - '-1' pragma: @@ -7703,7 +7230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '117' x-powered-by: - ASP.NET status: @@ -7723,27 +7250,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M59.2062524S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M50.9722672S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:25:31 GMT + - Sat, 16 Jan 2021 15:58:57 GMT expires: - '-1' pragma: @@ -7760,7 +7287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '116' x-powered-by: - ASP.NET status: @@ -7780,27 +7307,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M30.0587388S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M21.4315487S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:26:01 GMT + - Sat, 16 Jan 2021 15:59:28 GMT expires: - '-1' pragma: @@ -7817,7 +7344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '115' x-powered-by: - ASP.NET status: @@ -7837,27 +7364,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M0.943173S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M52.1473663S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:26:32 GMT + - Sat, 16 Jan 2021 15:59:58 GMT expires: - '-1' pragma: @@ -7874,7 +7401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '114' x-powered-by: - ASP.NET status: @@ -7894,27 +7421,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M31.8571338S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M22.7700087S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:27:03 GMT + - Sat, 16 Jan 2021 16:00:29 GMT expires: - '-1' pragma: @@ -7931,7 +7458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '113' x-powered-by: - ASP.NET status: @@ -7951,27 +7478,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M2.722767S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M53.2486048S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:27:34 GMT + - Sat, 16 Jan 2021 16:00:59 GMT expires: - '-1' pragma: @@ -7988,7 +7515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '112' x-powered-by: - ASP.NET status: @@ -8008,27 +7535,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M33.6807904S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M23.77839S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 13:28:05 GMT + - Sat, 16 Jan 2021 16:01:29 GMT expires: - '-1' pragma: @@ -8045,7 +7572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '111' x-powered-by: - ASP.NET status: @@ -8065,18 +7592,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M5.683424S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M54.296908S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8085,7 +7612,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:28:36 GMT + - Sat, 16 Jan 2021 16:02:00 GMT expires: - '-1' pragma: @@ -8102,7 +7629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '110' x-powered-by: - ASP.NET status: @@ -8122,27 +7649,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M36.4976397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M24.9140902S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:29:08 GMT + - Sat, 16 Jan 2021 16:02:31 GMT expires: - '-1' pragma: @@ -8159,7 +7686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '109' x-powered-by: - ASP.NET status: @@ -8179,18 +7706,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M8.8711268S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M55.5224673S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8199,7 +7726,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:29:40 GMT + - Sat, 16 Jan 2021 16:03:02 GMT expires: - '-1' pragma: @@ -8216,7 +7743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '108' x-powered-by: - ASP.NET status: @@ -8236,18 +7763,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M39.734195S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M26.2924297S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8256,7 +7783,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:30:11 GMT + - Sat, 16 Jan 2021 16:03:32 GMT expires: - '-1' pragma: @@ -8273,7 +7800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '107' x-powered-by: - ASP.NET status: @@ -8293,27 +7820,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M10.6328061S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M56.9662139S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:30:42 GMT + - Sat, 16 Jan 2021 16:04:02 GMT expires: - '-1' pragma: @@ -8330,7 +7857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '106' x-powered-by: - ASP.NET status: @@ -8350,18 +7877,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M41.540845S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M27.4385505S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8370,7 +7897,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:31:13 GMT + - Sat, 16 Jan 2021 16:04:33 GMT expires: - '-1' pragma: @@ -8387,7 +7914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '105' x-powered-by: - ASP.NET status: @@ -8407,27 +7934,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M12.4232613S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M57.9148493S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:31:44 GMT + - Sat, 16 Jan 2021 16:05:03 GMT expires: - '-1' pragma: @@ -8444,7 +7971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '104' x-powered-by: - ASP.NET status: @@ -8464,27 +7991,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M43.5338301S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M28.4199566S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:32:15 GMT + - Sat, 16 Jan 2021 16:05:34 GMT expires: - '-1' pragma: @@ -8501,7 +8028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '103' x-powered-by: - ASP.NET status: @@ -8521,18 +8048,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M14.372158S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M58.9270138S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -8541,7 +8068,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:32:45 GMT + - Sat, 16 Jan 2021 16:06:05 GMT expires: - '-1' pragma: @@ -8558,7 +8085,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '102' x-powered-by: - ASP.NET status: @@ -8578,27 +8105,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M47.0032437S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M29.3889146S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:33:18 GMT + - Sat, 16 Jan 2021 16:06:36 GMT expires: - '-1' pragma: @@ -8615,7 +8142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '101' x-powered-by: - ASP.NET status: @@ -8635,27 +8162,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M17.8456759S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M59.915838S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:33:49 GMT + - Sat, 16 Jan 2021 16:07:06 GMT expires: - '-1' pragma: @@ -8672,7 +8199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '100' x-powered-by: - ASP.NET status: @@ -8692,27 +8219,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M50.2068262S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M30.5327382S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:34:21 GMT + - Sat, 16 Jan 2021 16:07:36 GMT expires: - '-1' pragma: @@ -8729,7 +8256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '99' x-powered-by: - ASP.NET status: @@ -8749,27 +8276,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M21.1386312S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M0.9957734S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:34:52 GMT + - Sat, 16 Jan 2021 16:08:07 GMT expires: - '-1' pragma: @@ -8786,7 +8313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '98' x-powered-by: - ASP.NET status: @@ -8806,27 +8333,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M52.1673303S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M31.7690107S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:35:24 GMT + - Sat, 16 Jan 2021 16:08:38 GMT expires: - '-1' pragma: @@ -8843,7 +8370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '97' x-powered-by: - ASP.NET status: @@ -8863,27 +8390,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M22.9535862S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M2.4316524S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:35:54 GMT + - Sat, 16 Jan 2021 16:09:08 GMT expires: - '-1' pragma: @@ -8900,7 +8427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '96' x-powered-by: - ASP.NET status: @@ -8920,27 +8447,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M53.7849609S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M32.970213S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:36:25 GMT + - Sat, 16 Jan 2021 16:09:39 GMT expires: - '-1' pragma: @@ -8957,7 +8484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '95' x-powered-by: - ASP.NET status: @@ -8977,27 +8504,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M24.5229426S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M3.4758435S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:36:56 GMT + - Sat, 16 Jan 2021 16:10:10 GMT expires: - '-1' pragma: @@ -9014,7 +8541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '94' x-powered-by: - ASP.NET status: @@ -9034,27 +8561,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M55.2745677S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M33.9324145S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:37:27 GMT + - Sat, 16 Jan 2021 16:10:40 GMT expires: - '-1' pragma: @@ -9071,7 +8598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '93' x-powered-by: - ASP.NET status: @@ -9091,27 +8618,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M26.1426968S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M4.399395S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 13:37:57 GMT + - Sat, 16 Jan 2021 16:11:10 GMT expires: - '-1' pragma: @@ -9128,7 +8655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '92' x-powered-by: - ASP.NET status: @@ -9148,27 +8675,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M57.0690525S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M34.9292719S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:38:28 GMT + - Sat, 16 Jan 2021 16:11:41 GMT expires: - '-1' pragma: @@ -9185,7 +8712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '91' x-powered-by: - ASP.NET status: @@ -9205,27 +8732,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M28.0128672S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M5.4810395S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:39:00 GMT + - Sat, 16 Jan 2021 16:12:11 GMT expires: - '-1' pragma: @@ -9242,7 +8769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '90' x-powered-by: - ASP.NET status: @@ -9262,27 +8789,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M59.0199929S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M35.9497538S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:39:30 GMT + - Sat, 16 Jan 2021 16:12:41 GMT expires: - '-1' pragma: @@ -9299,7 +8826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '89' x-powered-by: - ASP.NET status: @@ -9319,27 +8846,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M30.9587238S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M6.4446707S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:40:02 GMT + - Sat, 16 Jan 2021 16:13:12 GMT expires: - '-1' pragma: @@ -9356,7 +8883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '88' x-powered-by: - ASP.NET status: @@ -9376,18 +8903,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M1.8857773S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M37.2845047S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9396,7 +8923,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:40:34 GMT + - Sat, 16 Jan 2021 16:13:43 GMT expires: - '-1' pragma: @@ -9413,7 +8940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '87' x-powered-by: - ASP.NET status: @@ -9433,27 +8960,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M32.9240229S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M7.7766051S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:41:04 GMT + - Sat, 16 Jan 2021 16:14:14 GMT expires: - '-1' pragma: @@ -9470,7 +8997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '86' x-powered-by: - ASP.NET status: @@ -9490,18 +9017,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M3.8034154S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M38.3313248S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9510,7 +9037,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:41:35 GMT + - Sat, 16 Jan 2021 16:14:44 GMT expires: - '-1' pragma: @@ -9527,7 +9054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '85' x-powered-by: - ASP.NET status: @@ -9547,27 +9074,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M34.6733927S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M8.8378979S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:42:06 GMT + - Sat, 16 Jan 2021 16:15:15 GMT expires: - '-1' pragma: @@ -9584,7 +9111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '84' x-powered-by: - ASP.NET status: @@ -9604,18 +9131,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M5.6709351S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M39.3237864S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9624,7 +9151,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:42:37 GMT + - Sat, 16 Jan 2021 16:15:45 GMT expires: - '-1' pragma: @@ -9641,7 +9168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '83' x-powered-by: - ASP.NET status: @@ -9661,27 +9188,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M36.4949952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M9.8702121S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:43:07 GMT + - Sat, 16 Jan 2021 16:16:16 GMT expires: - '-1' pragma: @@ -9698,7 +9225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '82' x-powered-by: - ASP.NET status: @@ -9718,18 +9245,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M7.3594849S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M40.4284045S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9738,7 +9265,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:43:39 GMT + - Sat, 16 Jan 2021 16:16:46 GMT expires: - '-1' pragma: @@ -9755,7 +9282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '81' x-powered-by: - ASP.NET status: @@ -9775,27 +9302,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M38.1607991S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M11.0701053S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:44:10 GMT + - Sat, 16 Jan 2021 16:17:17 GMT expires: - '-1' pragma: @@ -9812,7 +9339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '80' x-powered-by: - ASP.NET status: @@ -9832,18 +9359,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M9.0497449S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M41.7052876S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -9852,7 +9379,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:44:40 GMT + - Sat, 16 Jan 2021 16:17:48 GMT expires: - '-1' pragma: @@ -9869,7 +9396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '79' x-powered-by: - ASP.NET status: @@ -9889,27 +9416,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M39.9046949S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M12.5013031S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:45:11 GMT + - Sat, 16 Jan 2021 16:18:19 GMT expires: - '-1' pragma: @@ -9926,7 +9453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '78' x-powered-by: - ASP.NET status: @@ -9946,27 +9473,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M12.0521671S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M43.3176807S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:45:44 GMT + - Sat, 16 Jan 2021 16:18:50 GMT expires: - '-1' pragma: @@ -9983,7 +9510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '77' x-powered-by: - ASP.NET status: @@ -10003,27 +9530,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M42.9690165S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M13.9146278S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:46:14 GMT + - Sat, 16 Jan 2021 16:19:20 GMT expires: - '-1' pragma: @@ -10040,7 +9567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '76' x-powered-by: - ASP.NET status: @@ -10060,27 +9587,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M13.8795067S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M44.564532S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:46:45 GMT + - Sat, 16 Jan 2021 16:19:51 GMT expires: - '-1' pragma: @@ -10097,7 +9624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '75' x-powered-by: - ASP.NET status: @@ -10117,27 +9644,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M44.7725338S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M15.753503S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:47:15 GMT + - Sat, 16 Jan 2021 16:20:21 GMT expires: - '-1' pragma: @@ -10154,7 +9681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '74' x-powered-by: - ASP.NET status: @@ -10174,27 +9701,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M15.7095059S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M46.3318526S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:47:47 GMT + - Sat, 16 Jan 2021 16:20:53 GMT expires: - '-1' pragma: @@ -10211,7 +9738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '73' x-powered-by: - ASP.NET status: @@ -10231,27 +9758,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M46.6470632S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M16.8964176S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:48:18 GMT + - Sat, 16 Jan 2021 16:21:23 GMT expires: - '-1' pragma: @@ -10268,7 +9795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '72' x-powered-by: - ASP.NET status: @@ -10288,27 +9815,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M17.5102948S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M47.4217469S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:48:49 GMT + - Sat, 16 Jan 2021 16:21:54 GMT expires: - '-1' pragma: @@ -10325,7 +9852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '71' x-powered-by: - ASP.NET status: @@ -10345,27 +9872,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M48.3589725S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M17.9060821S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:49:20 GMT + - Sat, 16 Jan 2021 16:22:24 GMT expires: - '-1' pragma: @@ -10382,7 +9909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '70' x-powered-by: - ASP.NET status: @@ -10402,27 +9929,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M19.2586885S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M48.632213S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:49:51 GMT + - Sat, 16 Jan 2021 16:22:55 GMT expires: - '-1' pragma: @@ -10439,7 +9966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '69' x-powered-by: - ASP.NET status: @@ -10459,27 +9986,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M50.1364102S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M19.097434S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:50:21 GMT + - Sat, 16 Jan 2021 16:23:25 GMT expires: - '-1' pragma: @@ -10496,7 +10023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '68' x-powered-by: - ASP.NET status: @@ -10516,27 +10043,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M21.1008466S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M51.9336862S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:50:52 GMT + - Sat, 16 Jan 2021 16:23:58 GMT expires: - '-1' pragma: @@ -10553,7 +10080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '67' x-powered-by: - ASP.NET status: @@ -10573,27 +10100,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M53.1196009S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M22.3819373S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:51:25 GMT + - Sat, 16 Jan 2021 16:24:28 GMT expires: - '-1' pragma: @@ -10610,7 +10137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '66' x-powered-by: - ASP.NET status: @@ -10630,27 +10157,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M23.9516212S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M52.8675585S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:51:55 GMT + - Sat, 16 Jan 2021 16:24:59 GMT expires: - '-1' pragma: @@ -10667,7 +10194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '65' x-powered-by: - ASP.NET status: @@ -10687,27 +10214,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M54.8643535S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M23.4027963S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:52:26 GMT + - Sat, 16 Jan 2021 16:25:30 GMT expires: - '-1' pragma: @@ -10724,7 +10251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '64' x-powered-by: - ASP.NET status: @@ -10744,27 +10271,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M25.6382718S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M53.9717314S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:52:57 GMT + - Sat, 16 Jan 2021 16:26:00 GMT expires: - '-1' pragma: @@ -10781,7 +10308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '63' x-powered-by: - ASP.NET status: @@ -10801,27 +10328,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M56.5007547S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M24.4306014S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:53:27 GMT + - Sat, 16 Jan 2021 16:26:30 GMT expires: - '-1' pragma: @@ -10838,7 +10365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '62' x-powered-by: - ASP.NET status: @@ -10858,18 +10385,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M27.340092S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M54.9204082S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -10878,7 +10405,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:53:58 GMT + - Sat, 16 Jan 2021 16:27:01 GMT expires: - '-1' pragma: @@ -10895,7 +10422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '61' x-powered-by: - ASP.NET status: @@ -10915,27 +10442,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M58.2029204S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M25.3913708S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:54:30 GMT + - Sat, 16 Jan 2021 16:27:31 GMT expires: - '-1' pragma: @@ -10952,7 +10479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '60' x-powered-by: - ASP.NET status: @@ -10972,27 +10499,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M28.9594726S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M55.9136238S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:55:00 GMT + - Sat, 16 Jan 2021 16:28:01 GMT expires: - '-1' pragma: @@ -11009,7 +10536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '59' x-powered-by: - ASP.NET status: @@ -11029,27 +10556,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M59.9156508S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M26.3651464S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:55:31 GMT + - Sat, 16 Jan 2021 16:28:32 GMT expires: - '-1' pragma: @@ -11066,7 +10593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '58' x-powered-by: - ASP.NET status: @@ -11086,27 +10613,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M30.7771612S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M57.268517S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:56:02 GMT + - Sat, 16 Jan 2021 16:29:03 GMT expires: - '-1' pragma: @@ -11123,7 +10650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '57' x-powered-by: - ASP.NET status: @@ -11143,18 +10670,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M1.5866576S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M27.7341608S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11163,7 +10690,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:56:33 GMT + - Sat, 16 Jan 2021 16:29:34 GMT expires: - '-1' pragma: @@ -11180,7 +10707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '56' x-powered-by: - ASP.NET status: @@ -11200,27 +10727,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M33.3039676S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M58.2423687S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:57:05 GMT + - Sat, 16 Jan 2021 16:30:04 GMT expires: - '-1' pragma: @@ -11237,7 +10764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '56' x-powered-by: - ASP.NET status: @@ -11257,18 +10784,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M4.0772318S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M28.7253437S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11277,7 +10804,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:57:35 GMT + - Sat, 16 Jan 2021 16:30:35 GMT expires: - '-1' pragma: @@ -11294,7 +10821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '55' x-powered-by: - ASP.NET status: @@ -11314,27 +10841,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M34.9680936S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M59.3395629S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:58:07 GMT + - Sat, 16 Jan 2021 16:31:06 GMT expires: - '-1' pragma: @@ -11351,7 +10878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '54' x-powered-by: - ASP.NET status: @@ -11371,18 +10898,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M5.7104935S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M29.8429259S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache @@ -11391,7 +10918,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 13:58:37 GMT + - Sat, 16 Jan 2021 16:31:35 GMT expires: - '-1' pragma: @@ -11408,7 +10935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '53' x-powered-by: - ASP.NET status: @@ -11428,27 +10955,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M36.5211485S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M0.2871332S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 13:59:07 GMT + - Sat, 16 Jan 2021 16:32:06 GMT expires: - '-1' pragma: @@ -11465,7 +10992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '52' x-powered-by: - ASP.NET status: @@ -11485,27 +11012,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M7.370791S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M30.7342517S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 13:59:39 GMT + - Sat, 16 Jan 2021 16:32:37 GMT expires: - '-1' pragma: @@ -11522,7 +11049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '51' x-powered-by: - ASP.NET status: @@ -11542,27 +11069,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M38.4798341S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M1.2550873S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:00:09 GMT + - Sat, 16 Jan 2021 16:33:07 GMT expires: - '-1' pragma: @@ -11579,7 +11106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '50' x-powered-by: - ASP.NET status: @@ -11599,27 +11126,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9.4695689S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M31.7431468S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:00:41 GMT + - Sat, 16 Jan 2021 16:33:38 GMT expires: - '-1' pragma: @@ -11636,7 +11163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '49' x-powered-by: - ASP.NET status: @@ -11656,27 +11183,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H40.3511362S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M2.4317802S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:01:11 GMT + - Sat, 16 Jan 2021 16:34:09 GMT expires: - '-1' pragma: @@ -11693,7 +11220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '48' x-powered-by: - ASP.NET status: @@ -11713,27 +11240,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M11.4367591S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M33.002231S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:01:43 GMT + - Sat, 16 Jan 2021 16:34:39 GMT expires: - '-1' pragma: @@ -11750,7 +11277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '47' x-powered-by: - ASP.NET status: @@ -11770,27 +11297,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M42.1509653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M3.5010115S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:02:13 GMT + - Sat, 16 Jan 2021 16:35:09 GMT expires: - '-1' pragma: @@ -11807,7 +11334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '46' x-powered-by: - ASP.NET status: @@ -11827,27 +11354,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M14.1400496S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M34.2654204S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:02:46 GMT + - Sat, 16 Jan 2021 16:35:40 GMT expires: - '-1' pragma: @@ -11864,7 +11391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '45' x-powered-by: - ASP.NET status: @@ -11884,27 +11411,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M45.159945S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M4.7257658S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:03:16 GMT + - Sat, 16 Jan 2021 16:36:11 GMT expires: - '-1' pragma: @@ -11921,7 +11448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '44' x-powered-by: - ASP.NET status: @@ -11941,27 +11468,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M16.0591713S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M35.2839283S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:03:47 GMT + - Sat, 16 Jan 2021 16:36:41 GMT expires: - '-1' pragma: @@ -11978,7 +11505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '43' x-powered-by: - ASP.NET status: @@ -11998,27 +11525,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M46.8414749S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M5.7748942S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:04:17 GMT + - Sat, 16 Jan 2021 16:37:12 GMT expires: - '-1' pragma: @@ -12035,7 +11562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '42' x-powered-by: - ASP.NET status: @@ -12055,27 +11582,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M17.6964196S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M36.2431762S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:04:49 GMT + - Sat, 16 Jan 2021 16:37:41 GMT expires: - '-1' pragma: @@ -12092,7 +11619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '41' x-powered-by: - ASP.NET status: @@ -12112,27 +11639,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M48.5733065S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M6.7319145S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:05:20 GMT + - Sat, 16 Jan 2021 16:38:12 GMT expires: - '-1' pragma: @@ -12149,7 +11676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '40' x-powered-by: - ASP.NET status: @@ -12169,27 +11696,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M20.7404505S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M37.2030848S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:05:52 GMT + - Sat, 16 Jan 2021 16:38:43 GMT expires: - '-1' pragma: @@ -12206,7 +11733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '39' x-powered-by: - ASP.NET status: @@ -12226,27 +11753,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M51.6459262S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M8.0059406S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:06:22 GMT + - Sat, 16 Jan 2021 16:39:14 GMT expires: - '-1' pragma: @@ -12263,7 +11790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '38' x-powered-by: - ASP.NET status: @@ -12283,27 +11810,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M22.5155385S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M38.5194638S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:06:54 GMT + - Sat, 16 Jan 2021 16:39:44 GMT expires: - '-1' pragma: @@ -12320,7 +11847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '37' x-powered-by: - ASP.NET status: @@ -12340,27 +11867,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M53.2687465S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M9.4185126S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:07:24 GMT + - Sat, 16 Jan 2021 16:40:15 GMT expires: - '-1' pragma: @@ -12377,7 +11904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '36' x-powered-by: - ASP.NET status: @@ -12397,27 +11924,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M23.9749495S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M39.9697291S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:07:55 GMT + - Sat, 16 Jan 2021 16:40:45 GMT expires: - '-1' pragma: @@ -12434,7 +11961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '35' x-powered-by: - ASP.NET status: @@ -12454,27 +11981,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M55.916209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M10.5455635S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:08:27 GMT + - Sat, 16 Jan 2021 16:41:16 GMT expires: - '-1' pragma: @@ -12491,7 +12018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '34' x-powered-by: - ASP.NET status: @@ -12511,27 +12038,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M26.720564S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M41.2939963S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:08:58 GMT + - Sat, 16 Jan 2021 16:41:47 GMT expires: - '-1' pragma: @@ -12548,7 +12075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '33' x-powered-by: - ASP.NET status: @@ -12568,27 +12095,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M57.6800633S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M11.9354216S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:09:28 GMT + - Sat, 16 Jan 2021 16:42:18 GMT expires: - '-1' pragma: @@ -12605,7 +12132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '32' x-powered-by: - ASP.NET status: @@ -12625,27 +12152,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M28.4451515S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M42.5496986S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:10:00 GMT + - Sat, 16 Jan 2021 16:42:48 GMT expires: - '-1' pragma: @@ -12662,7 +12189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '31' x-powered-by: - ASP.NET status: @@ -12682,27 +12209,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M59.2995937S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13.1875705S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:10:30 GMT + - Sat, 16 Jan 2021 16:43:19 GMT expires: - '-1' pragma: @@ -12719,7 +12246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '30' x-powered-by: - ASP.NET status: @@ -12739,27 +12266,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M30.3158634S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H43.6972783S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:11:02 GMT + - Sat, 16 Jan 2021 16:43:50 GMT expires: - '-1' pragma: @@ -12776,7 +12303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '29' x-powered-by: - ASP.NET status: @@ -12796,27 +12323,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M1.1039693S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M14.407439S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:06.276263Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:11:32 GMT + - Sat, 16 Jan 2021 16:44:20 GMT expires: - '-1' pragma: @@ -12833,7 +12360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '28' x-powered-by: - ASP.NET status: @@ -12853,27 +12380,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M31.9240436S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f45f2794-7f5d-419c-8992-833a061db78d","name":"f45f2794-7f5d-419c-8992-833a061db78d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M15.729938S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM","Backup Size":"21438 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-16T15:43:06.276263Z","endTime":"2021-01-16T16:44:22.006201Z","activityId":"8609ea77-5811-11eb-a414-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1221' content-type: - application/json date: - - Fri, 18 Dec 2020 14:12:03 GMT + - Sat, 16 Jan 2021 16:44:51 GMT expires: - '-1' pragma: @@ -12890,7 +12417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '27' x-powered-by: - ASP.NET status: @@ -12904,40 +12431,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M2.741988S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + 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-01-16T15:43:06.276263Z","protectedItemDataId":"319190202","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-01-16T15:43:10.6638067Z"}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '2332' content-type: - application/json date: - - Fri, 18 Dec 2020 14:12:34 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -12947,69 +12471,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-15T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M33.551255S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + 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/57067c25-c28c-4073-9868-9fa520eed370?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1160' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 14:13:05 GMT + - Sat, 16 Jan 2021 16:45: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/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/57067c25-c28c-4073-9868-9fa520eed370?api-version=2020-10-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: - - '28' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -13018,40 +12539,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/57067c25-c28c-4073-9868-9fa520eed370?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M4.3794255S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"57067c25-c28c-4073-9868-9fa520eed370","name":"57067c25-c28c-4073-9868-9fa520eed370","status":"Succeeded","startTime":"2021-01-16T16:45:22.1851122Z","endTime":"2021-01-16T16:45:22.1851122Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a778405e-6720-4503-a918-682aef55fafc"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 14:13:35 GMT + - Sat, 16 Jan 2021 16: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: @@ -13061,7 +12578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '149' x-powered-by: - ASP.NET status: @@ -13075,33 +12592,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - --backup-management-type --workload-type -g -v -c -i --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M36.1716286S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT0.9413423S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 14:14:07 GMT + - Sat, 16 Jan 2021 16:45:23 GMT expires: - '-1' pragma: @@ -13118,7 +12635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '147' x-powered-by: - ASP.NET status: @@ -13138,27 +12655,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M6.8884395S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.5483829S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 14:14:39 GMT + - Sat, 16 Jan 2021 16:45:23 GMT expires: - '-1' pragma: @@ -13175,7 +12692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '39' x-powered-by: - ASP.NET status: @@ -13195,27 +12712,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M37.6683649S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.0189977S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 14:15:09 GMT + - Sat, 16 Jan 2021 16:45:24 GMT expires: - '-1' pragma: @@ -13232,7 +12749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '38' x-powered-by: - ASP.NET status: @@ -13252,27 +12769,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M8.3835974S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32.8014471S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:15:39 GMT + - Sat, 16 Jan 2021 16:45:54 GMT expires: - '-1' pragma: @@ -13289,7 +12806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '37' x-powered-by: - ASP.NET status: @@ -13309,27 +12826,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M39.2296187S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M3.6289912S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:16:11 GMT + - Sat, 16 Jan 2021 16:46:25 GMT expires: - '-1' pragma: @@ -13346,7 +12863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '36' x-powered-by: - ASP.NET status: @@ -13366,27 +12883,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M10.8420115S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M34.3895933S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:16:42 GMT + - Sat, 16 Jan 2021 16:46:57 GMT expires: - '-1' pragma: @@ -13403,7 +12920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '35' x-powered-by: - ASP.NET status: @@ -13423,27 +12940,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M41.7349214S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.9370556S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:17:12 GMT + - Sat, 16 Jan 2021 16:47:27 GMT expires: - '-1' pragma: @@ -13460,7 +12977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '34' x-powered-by: - ASP.NET status: @@ -13480,27 +12997,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M12.4793136S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.7415864S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:17:44 GMT + - Sat, 16 Jan 2021 16:47:59 GMT expires: - '-1' pragma: @@ -13517,7 +13034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '33' x-powered-by: - ASP.NET status: @@ -13537,27 +13054,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M43.2883511S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.584139S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:18:15 GMT + - Sat, 16 Jan 2021 16:48:29 GMT expires: - '-1' pragma: @@ -13574,7 +13091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '32' x-powered-by: - ASP.NET status: @@ -13594,27 +13111,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M14.1345546S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.376693S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:18:45 GMT + - Sat, 16 Jan 2021 16:49:01 GMT expires: - '-1' pragma: @@ -13631,7 +13148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '31' x-powered-by: - ASP.NET status: @@ -13651,27 +13168,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M44.9750247S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M9.2298496S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:19:17 GMT + - Sat, 16 Jan 2021 16:49:32 GMT expires: - '-1' pragma: @@ -13688,7 +13205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '30' x-powered-by: - ASP.NET status: @@ -13708,27 +13225,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M16.7963898S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M41.0067952S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:19:48 GMT + - Sat, 16 Jan 2021 16:50:03 GMT expires: - '-1' pragma: @@ -13745,7 +13262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '47' x-powered-by: - ASP.NET status: @@ -13765,27 +13282,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M47.7102939S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M11.8662398S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:20:19 GMT + - Sat, 16 Jan 2021 16:50:34 GMT expires: - '-1' pragma: @@ -13802,7 +13319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '46' x-powered-by: - ASP.NET status: @@ -13822,27 +13339,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M18.524909S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M42.6700239S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:20:50 GMT + - Sat, 16 Jan 2021 16:51:04 GMT expires: - '-1' pragma: @@ -13859,7 +13376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '45' x-powered-by: - ASP.NET status: @@ -13879,27 +13396,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M49.377452S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T13:00:31.6246476Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M13.5013508S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:21:21 GMT + - Sat, 16 Jan 2021 16:51:36 GMT expires: - '-1' pragma: @@ -13916,7 +13433,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '44' x-powered-by: - ASP.NET status: @@ -13936,27 +13453,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7e3481dc-85a3-4db2-8cbb-353f35470fe2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7e3481dc-85a3-4db2-8cbb-353f35470fe2","name":"7e3481dc-85a3-4db2-8cbb-353f35470fe2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.0103982S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM","Backup Size":"21442 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T13:00:31.6246476Z","endTime":"2020-12-18T14:21:43.6350458Z","activityId":"ffd6a8ed-4130-11eb-9111-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M44.3446339S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1225' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:21:51 GMT + - Sat, 16 Jan 2021 16:52:06 GMT expires: - '-1' pragma: @@ -13973,7 +13490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '43' x-powered-by: - ASP.NET status: @@ -13987,37 +13504,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-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","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":"2020-12-18T13:00:31.6246476Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T13:00:35.5434027Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M15.2023823S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:22:23 GMT + - Sat, 16 Jan 2021 16:52: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: @@ -14027,66 +13547,69 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '42' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait 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 + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M46.0729528S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' 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/cb08bb45-755e-4203-8f1b-faca9601046e?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '1158' + content-type: + - application/json date: - - Fri, 18 Dec 2020 14:22:25 GMT + - Sat, 16 Jan 2021 16:53:08 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/cb08bb45-755e-4203-8f1b-faca9601046e?api-version=2016-12-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-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14095,36 +13618,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/cb08bb45-755e-4203-8f1b-faca9601046e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"cb08bb45-755e-4203-8f1b-faca9601046e","name":"cb08bb45-755e-4203-8f1b-faca9601046e","status":"Succeeded","startTime":"2020-12-18T14:22:25.8392674Z","endTime":"2020-12-18T14:22:25.8392674Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M16.9152871S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:22:27 GMT + - Sat, 16 Jan 2021 16:53: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: @@ -14134,7 +13661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '40' x-powered-by: - ASP.NET status: @@ -14148,33 +13675,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --retain-until --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.7554683S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M47.7714679S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:22:29 GMT + - Sat, 16 Jan 2021 16:54:10 GMT expires: - '-1' pragma: @@ -14191,7 +13718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '39' x-powered-by: - ASP.NET status: @@ -14211,27 +13738,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.0514564S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M18.6533314S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:22:31 GMT + - Sat, 16 Jan 2021 16:54:40 GMT expires: - '-1' pragma: @@ -14248,7 +13775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '38' x-powered-by: - ASP.NET status: @@ -14268,27 +13795,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.9406149S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M49.5227712S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:22:32 GMT + - Sat, 16 Jan 2021 16:55:11 GMT expires: - '-1' pragma: @@ -14305,7 +13832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '57' x-powered-by: - ASP.NET status: @@ -14325,27 +13852,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37.9057977S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"InProgress"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M20.3286128S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:23:04 GMT + - Sat, 16 Jan 2021 16:55:42 GMT expires: - '-1' pragma: @@ -14362,7 +13889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '56' x-powered-by: - ASP.NET status: @@ -14382,27 +13909,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.8827858S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M51.31522S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 14:23:35 GMT + - Sat, 16 Jan 2021 16:56:14 GMT expires: - '-1' pragma: @@ -14419,7 +13946,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '55' x-powered-by: - ASP.NET status: @@ -14439,27 +13966,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.8658415S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M22.270652S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:24:05 GMT + - Sat, 16 Jan 2021 16:56:44 GMT expires: - '-1' pragma: @@ -14476,7 +14003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '54' x-powered-by: - ASP.NET status: @@ -14496,18 +14023,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.6663359S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M53.2285202S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14516,7 +14043,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:24:36 GMT + - Sat, 16 Jan 2021 16:57:15 GMT expires: - '-1' pragma: @@ -14533,7 +14060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '53' x-powered-by: - ASP.NET status: @@ -14553,18 +14080,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M41.5881925S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M24.1105213S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14573,7 +14100,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:25:07 GMT + - Sat, 16 Jan 2021 16:57:45 GMT expires: - '-1' pragma: @@ -14590,7 +14117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '52' x-powered-by: - ASP.NET status: @@ -14610,27 +14137,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M12.644478S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M54.9907229S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:25:38 GMT + - Sat, 16 Jan 2021 16:58:17 GMT expires: - '-1' pragma: @@ -14647,7 +14174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '51' x-powered-by: - ASP.NET status: @@ -14667,18 +14194,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M43.5456327S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M25.9577288S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14687,7 +14214,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:26:09 GMT + - Sat, 16 Jan 2021 16:58:48 GMT expires: - '-1' pragma: @@ -14704,7 +14231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '50' x-powered-by: - ASP.NET status: @@ -14724,18 +14251,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M14.3861542S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M56.6661641S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14744,7 +14271,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:26:41 GMT + - Sat, 16 Jan 2021 16:59:18 GMT expires: - '-1' pragma: @@ -14761,7 +14288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '49' x-powered-by: - ASP.NET status: @@ -14781,18 +14308,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M45.3679626S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M27.6322287S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14801,7 +14328,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:27:11 GMT + - Sat, 16 Jan 2021 16:59:51 GMT expires: - '-1' pragma: @@ -14818,7 +14345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '48' x-powered-by: - ASP.NET status: @@ -14838,18 +14365,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M16.1597407S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M59.3861028S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14858,7 +14385,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:27:42 GMT + - Sat, 16 Jan 2021 17:00:21 GMT expires: - '-1' pragma: @@ -14875,7 +14402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '67' x-powered-by: - ASP.NET status: @@ -14895,18 +14422,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M46.9876455S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M30.3874262S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -14915,7 +14442,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:28:12 GMT + - Sat, 16 Jan 2021 17:00:52 GMT expires: - '-1' pragma: @@ -14932,7 +14459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '66' x-powered-by: - ASP.NET status: @@ -14952,27 +14479,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M20.6300142S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M1.2908211S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:28:46 GMT + - Sat, 16 Jan 2021 17:01:23 GMT expires: - '-1' pragma: @@ -14989,7 +14516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '65' x-powered-by: - ASP.NET status: @@ -15009,27 +14536,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M51.600652S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M32.1291461S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:29:17 GMT + - Sat, 16 Jan 2021 17:01:54 GMT expires: - '-1' pragma: @@ -15046,7 +14573,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '64' x-powered-by: - ASP.NET status: @@ -15066,27 +14593,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M22.4664109S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M2.9106567S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:29:48 GMT + - Sat, 16 Jan 2021 17:02:25 GMT expires: - '-1' pragma: @@ -15103,7 +14630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '63' x-powered-by: - ASP.NET status: @@ -15123,27 +14650,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M53.3279301S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M33.8317808S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:30:19 GMT + - Sat, 16 Jan 2021 17:02:56 GMT expires: - '-1' pragma: @@ -15160,7 +14687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '62' x-powered-by: - ASP.NET status: @@ -15180,18 +14707,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M24.1157604S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M4.6317129S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15200,7 +14727,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:30:50 GMT + - Sat, 16 Jan 2021 17:03:26 GMT expires: - '-1' pragma: @@ -15217,7 +14744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '61' x-powered-by: - ASP.NET status: @@ -15237,27 +14764,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M55.3590102S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M35.3687531S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:31:20 GMT + - Sat, 16 Jan 2021 17:03:57 GMT expires: - '-1' pragma: @@ -15274,7 +14801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '60' x-powered-by: - ASP.NET status: @@ -15294,18 +14821,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M26.2324967S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M6.1877226S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15314,7 +14841,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:31:52 GMT + - Sat, 16 Jan 2021 17:04:28 GMT expires: - '-1' pragma: @@ -15331,7 +14858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '59' x-powered-by: - ASP.NET status: @@ -15351,27 +14878,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M57.0245546S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M36.8664896S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:32:23 GMT + - Sat, 16 Jan 2021 17:04:59 GMT expires: - '-1' pragma: @@ -15388,7 +14915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '58' x-powered-by: - ASP.NET status: @@ -15408,18 +14935,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M27.902902S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M7.7984289S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15428,7 +14955,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:32:53 GMT + - Sat, 16 Jan 2021 17:05:30 GMT expires: - '-1' pragma: @@ -15445,7 +14972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '77' x-powered-by: - ASP.NET status: @@ -15465,18 +14992,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M58.7192058S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M38.5814865S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15485,7 +15012,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:33:25 GMT + - Sat, 16 Jan 2021 17:06:01 GMT expires: - '-1' pragma: @@ -15502,7 +15029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '76' x-powered-by: - ASP.NET status: @@ -15522,18 +15049,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M29.5857578S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M10.3009583S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15542,7 +15069,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:33:55 GMT + - Sat, 16 Jan 2021 17:06:33 GMT expires: - '-1' pragma: @@ -15559,7 +15086,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '75' x-powered-by: - ASP.NET status: @@ -15579,27 +15106,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M0.3769712S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M41.3813137S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:34:26 GMT + - Sat, 16 Jan 2021 17:07:04 GMT expires: - '-1' pragma: @@ -15616,7 +15143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '74' x-powered-by: - ASP.NET status: @@ -15636,18 +15163,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M32.3997841S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M12.6089418S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15656,7 +15183,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:34:58 GMT + - Sat, 16 Jan 2021 17:07:34 GMT expires: - '-1' pragma: @@ -15673,7 +15200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '73' x-powered-by: - ASP.NET status: @@ -15693,27 +15220,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M3.3582139S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M43.4860144S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:35:29 GMT + - Sat, 16 Jan 2021 17:08:05 GMT expires: - '-1' pragma: @@ -15730,7 +15257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '72' x-powered-by: - ASP.NET status: @@ -15750,18 +15277,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M34.2204991S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M14.2551564S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15770,7 +15297,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:35:59 GMT + - Sat, 16 Jan 2021 17:08:36 GMT expires: - '-1' pragma: @@ -15787,7 +15314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '71' x-powered-by: - ASP.NET status: @@ -15807,27 +15334,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M5.0321279S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M45.4996671S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:36:32 GMT + - Sat, 16 Jan 2021 17:09:07 GMT expires: - '-1' pragma: @@ -15844,7 +15371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '70' x-powered-by: - ASP.NET status: @@ -15864,18 +15391,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M36.7223925S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M17.0037876S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15884,7 +15411,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:37:02 GMT + - Sat, 16 Jan 2021 17:09:39 GMT expires: - '-1' pragma: @@ -15901,7 +15428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '69' x-powered-by: - ASP.NET status: @@ -15921,18 +15448,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M7.5147699S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M48.711535S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15941,7 +15468,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:37:33 GMT + - Sat, 16 Jan 2021 17:10:10 GMT expires: - '-1' pragma: @@ -15958,7 +15485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '86' x-powered-by: - ASP.NET status: @@ -15978,18 +15505,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M38.4145165S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M19.7114834S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -15998,7 +15525,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:38:04 GMT + - Sat, 16 Jan 2021 17:10:43 GMT expires: - '-1' pragma: @@ -16015,7 +15542,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '85' x-powered-by: - ASP.NET status: @@ -16035,27 +15562,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M9.2793593S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M51.2532833S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:38:35 GMT + - Sat, 16 Jan 2021 17:11:13 GMT expires: - '-1' pragma: @@ -16072,7 +15599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '84' x-powered-by: - ASP.NET status: @@ -16092,18 +15619,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M40.1681003S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M22.1720092S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16112,7 +15639,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:39:05 GMT + - Sat, 16 Jan 2021 17:11:44 GMT expires: - '-1' pragma: @@ -16129,7 +15656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '83' x-powered-by: - ASP.NET status: @@ -16149,27 +15676,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M11.1347103S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M53.173178S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:39:36 GMT + - Sat, 16 Jan 2021 17:12:15 GMT expires: - '-1' pragma: @@ -16186,7 +15713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '82' x-powered-by: - ASP.NET status: @@ -16206,18 +15733,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M42.0066176S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M24.1134891S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16226,7 +15753,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:40:08 GMT + - Sat, 16 Jan 2021 17:12:46 GMT expires: - '-1' pragma: @@ -16243,7 +15770,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '81' x-powered-by: - ASP.NET status: @@ -16263,18 +15790,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M12.8127939S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M54.9945307S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16283,7 +15810,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:40:39 GMT + - Sat, 16 Jan 2021 17:13:17 GMT expires: - '-1' pragma: @@ -16300,7 +15827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '80' x-powered-by: - ASP.NET status: @@ -16320,18 +15847,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M44.8092415S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M25.8883882S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16340,7 +15867,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:41:10 GMT + - Sat, 16 Jan 2021 17:13:47 GMT expires: - '-1' pragma: @@ -16357,7 +15884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '79' x-powered-by: - ASP.NET status: @@ -16377,27 +15904,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M15.659597S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M56.7598565S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:41:41 GMT + - Sat, 16 Jan 2021 17:14:19 GMT expires: - '-1' pragma: @@ -16414,7 +15941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '78' x-powered-by: - ASP.NET status: @@ -16434,18 +15961,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M46.5712534S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M27.5986542S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16454,7 +15981,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:42:12 GMT + - Sat, 16 Jan 2021 17:14:49 GMT expires: - '-1' pragma: @@ -16471,7 +15998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '77' x-powered-by: - ASP.NET status: @@ -16491,18 +16018,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M17.3849935S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M58.4539213S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16511,7 +16038,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:42:43 GMT + - Sat, 16 Jan 2021 17:15:20 GMT expires: - '-1' pragma: @@ -16528,7 +16055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '90' x-powered-by: - ASP.NET status: @@ -16548,18 +16075,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M48.1992888S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M29.2419526S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16568,7 +16095,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:43:13 GMT + - Sat, 16 Jan 2021 17:15:51 GMT expires: - '-1' pragma: @@ -16585,7 +16112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '89' x-powered-by: - ASP.NET status: @@ -16605,27 +16132,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M19.0644837S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M0.0290014S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:43:45 GMT + - Sat, 16 Jan 2021 17:16:22 GMT expires: - '-1' pragma: @@ -16642,7 +16169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '88' x-powered-by: - ASP.NET status: @@ -16662,18 +16189,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M49.8473957S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M30.7615906S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16682,7 +16209,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:44:15 GMT + - Sat, 16 Jan 2021 17:16:52 GMT expires: - '-1' pragma: @@ -16699,7 +16226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '87' x-powered-by: - ASP.NET status: @@ -16719,27 +16246,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M20.7238902S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M1.5092037S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:44:46 GMT + - Sat, 16 Jan 2021 17:17:23 GMT expires: - '-1' pragma: @@ -16756,7 +16283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '86' x-powered-by: - ASP.NET status: @@ -16776,18 +16303,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M51.5168101S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M32.2713956S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16796,7 +16323,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:45:17 GMT + - Sat, 16 Jan 2021 17:17:54 GMT expires: - '-1' pragma: @@ -16813,7 +16340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '85' x-powered-by: - ASP.NET status: @@ -16833,27 +16360,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M22.2593199S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M3.1505518S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:45:48 GMT + - Sat, 16 Jan 2021 17:18:25 GMT expires: - '-1' pragma: @@ -16870,7 +16397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '84' x-powered-by: - ASP.NET status: @@ -16890,18 +16417,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M52.972641S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M33.955216S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -16910,7 +16437,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:46:18 GMT + - Sat, 16 Jan 2021 17:18:55 GMT expires: - '-1' pragma: @@ -16927,7 +16454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '83' x-powered-by: - ASP.NET status: @@ -16947,27 +16474,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M23.8723057S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M6.2529324S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:46:49 GMT + - Sat, 16 Jan 2021 17:19:28 GMT expires: - '-1' pragma: @@ -16984,7 +16511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '82' x-powered-by: - ASP.NET status: @@ -17004,18 +16531,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M55.8691398S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M37.0516662S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17024,7 +16551,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:47:22 GMT + - Sat, 16 Jan 2021 17:19:59 GMT expires: - '-1' pragma: @@ -17041,7 +16568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '81' x-powered-by: - ASP.NET status: @@ -17061,27 +16588,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M26.6786397S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M7.9323665S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 14:47:52 GMT + - Sat, 16 Jan 2021 17:20:30 GMT expires: - '-1' pragma: @@ -17098,7 +16625,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '80' x-powered-by: - ASP.NET status: @@ -17118,18 +16645,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M57.3983137S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M38.7897286S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17138,7 +16665,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:48:23 GMT + - Sat, 16 Jan 2021 17:21:01 GMT expires: - '-1' pragma: @@ -17155,7 +16682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '79' x-powered-by: - ASP.NET status: @@ -17175,18 +16702,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M28.2352445S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M10.5279066S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17195,7 +16722,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:48:54 GMT + - Sat, 16 Jan 2021 17:21:32 GMT expires: - '-1' pragma: @@ -17212,7 +16739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '78' x-powered-by: - ASP.NET status: @@ -17232,18 +16759,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M59.1137741S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M41.4830937S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17252,7 +16779,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:49:25 GMT + - Sat, 16 Jan 2021 17:22:03 GMT expires: - '-1' pragma: @@ -17269,7 +16796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '77' x-powered-by: - ASP.NET status: @@ -17289,18 +16816,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M29.9928735S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M12.3930633S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17309,7 +16836,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:49:55 GMT + - Sat, 16 Jan 2021 17:22:34 GMT expires: - '-1' pragma: @@ -17326,7 +16853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '76' x-powered-by: - ASP.NET status: @@ -17346,27 +16873,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M0.8050802S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M43.2633284S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:50:26 GMT + - Sat, 16 Jan 2021 17:23:05 GMT expires: - '-1' pragma: @@ -17383,7 +16910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '75' x-powered-by: - ASP.NET status: @@ -17403,18 +16930,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M31.6483146S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M14.1045391S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17423,7 +16950,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:50:58 GMT + - Sat, 16 Jan 2021 17:23:36 GMT expires: - '-1' pragma: @@ -17440,7 +16967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '74' x-powered-by: - ASP.NET status: @@ -17460,18 +16987,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M2.4721753S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M44.934374S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17480,7 +17007,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:51:28 GMT + - Sat, 16 Jan 2021 17:24:07 GMT expires: - '-1' pragma: @@ -17497,7 +17024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '73' x-powered-by: - ASP.NET status: @@ -17517,18 +17044,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M33.2120264S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M15.9920696S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17537,7 +17064,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:51:59 GMT + - Sat, 16 Jan 2021 17:24:37 GMT expires: - '-1' pragma: @@ -17554,7 +17081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '72' x-powered-by: - ASP.NET status: @@ -17574,27 +17101,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M4.1158044S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M46.8462628S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:52:29 GMT + - Sat, 16 Jan 2021 17:25:08 GMT expires: - '-1' pragma: @@ -17611,7 +17138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '71' x-powered-by: - ASP.NET status: @@ -17631,18 +17158,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M34.8998772S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M17.6787138S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17651,7 +17178,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:53:01 GMT + - Sat, 16 Jan 2021 17:25:39 GMT expires: - '-1' pragma: @@ -17668,7 +17195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '70' x-powered-by: - ASP.NET status: @@ -17688,27 +17215,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M6.7523949S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M48.7241066S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:53:32 GMT + - Sat, 16 Jan 2021 17:26:10 GMT expires: - '-1' pragma: @@ -17725,7 +17252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '69' x-powered-by: - ASP.NET status: @@ -17745,18 +17272,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M37.4641637S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M19.6380321S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17765,7 +17292,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:54:03 GMT + - Sat, 16 Jan 2021 17:26:41 GMT expires: - '-1' pragma: @@ -17782,7 +17309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '68' x-powered-by: - ASP.NET status: @@ -17802,27 +17329,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M8.1969054S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M50.4759287S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:54:34 GMT + - Sat, 16 Jan 2021 17:27:13 GMT expires: - '-1' pragma: @@ -17839,7 +17366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '67' x-powered-by: - ASP.NET status: @@ -17859,18 +17386,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M38.9902411S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M21.2305051S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17879,7 +17406,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:55:05 GMT + - Sat, 16 Jan 2021 17:27:43 GMT expires: - '-1' pragma: @@ -17896,7 +17423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '66' x-powered-by: - ASP.NET status: @@ -17916,27 +17443,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M9.7219508S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M52.0414285S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:55:35 GMT + - Sat, 16 Jan 2021 17:28:14 GMT expires: - '-1' pragma: @@ -17953,7 +17480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '65' x-powered-by: - ASP.NET status: @@ -17973,18 +17500,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M40.5445865S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M22.7991264S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -17993,7 +17520,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:56:07 GMT + - Sat, 16 Jan 2021 17:28:45 GMT expires: - '-1' pragma: @@ -18010,7 +17537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '64' x-powered-by: - ASP.NET status: @@ -18030,18 +17557,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M11.3671525S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M53.8522787S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18050,7 +17577,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:56:37 GMT + - Sat, 16 Jan 2021 17:29:16 GMT expires: - '-1' pragma: @@ -18067,7 +17594,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '63' x-powered-by: - ASP.NET status: @@ -18087,18 +17614,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M42.1816102S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M24.8528117S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18107,7 +17634,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:57:08 GMT + - Sat, 16 Jan 2021 17:29:47 GMT expires: - '-1' pragma: @@ -18124,7 +17651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '62' x-powered-by: - ASP.NET status: @@ -18144,18 +17671,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M13.0141332S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M55.7233337S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18164,7 +17691,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:57:38 GMT + - Sat, 16 Jan 2021 17:30:18 GMT expires: - '-1' pragma: @@ -18181,7 +17708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '61' x-powered-by: - ASP.NET status: @@ -18201,18 +17728,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M43.8058899S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M26.4968707S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18221,7 +17748,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:58:10 GMT + - Sat, 16 Jan 2021 17:30:48 GMT expires: - '-1' pragma: @@ -18238,7 +17765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '60' x-powered-by: - ASP.NET status: @@ -18258,27 +17785,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M14.693691S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M57.3756719S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 14:58:40 GMT + - Sat, 16 Jan 2021 17:31:20 GMT expires: - '-1' pragma: @@ -18295,7 +17822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '59' x-powered-by: - ASP.NET status: @@ -18315,18 +17842,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M45.6342205S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M27.8438879S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18335,7 +17862,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:59:11 GMT + - Sat, 16 Jan 2021 17:31:50 GMT expires: - '-1' pragma: @@ -18352,7 +17879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '58' x-powered-by: - ASP.NET status: @@ -18372,18 +17899,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M17.7733569S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M58.6631233S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18392,7 +17919,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 14:59:44 GMT + - Sat, 16 Jan 2021 17:32:21 GMT expires: - '-1' pragma: @@ -18409,7 +17936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '57' x-powered-by: - ASP.NET status: @@ -18429,18 +17956,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M48.7550106S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M29.5149873S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18449,7 +17976,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:00:14 GMT + - Sat, 16 Jan 2021 17:32:52 GMT expires: - '-1' pragma: @@ -18466,7 +17993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '56' x-powered-by: - ASP.NET status: @@ -18486,27 +18013,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M19.6161655S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M0.5059126S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:00:45 GMT + - Sat, 16 Jan 2021 17:33:22 GMT expires: - '-1' pragma: @@ -18523,7 +18050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '55' x-powered-by: - ASP.NET status: @@ -18543,18 +18070,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M50.4447753S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M31.2803316S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18563,7 +18090,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:01:16 GMT + - Sat, 16 Jan 2021 17:33:54 GMT expires: - '-1' pragma: @@ -18580,7 +18107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '54' x-powered-by: - ASP.NET status: @@ -18600,27 +18127,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M21.2704608S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M2.2972008S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:01:46 GMT + - Sat, 16 Jan 2021 17:34:24 GMT expires: - '-1' pragma: @@ -18637,7 +18164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '53' x-powered-by: - ASP.NET status: @@ -18657,18 +18184,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M52.1980084S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M33.1886776S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18677,7 +18204,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:02:18 GMT + - Sat, 16 Jan 2021 17:34:55 GMT expires: - '-1' pragma: @@ -18694,7 +18221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '52' x-powered-by: - ASP.NET status: @@ -18714,27 +18241,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M23.0159938S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M4.0768202S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:02:49 GMT + - Sat, 16 Jan 2021 17:35:26 GMT expires: - '-1' pragma: @@ -18751,7 +18278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '51' x-powered-by: - ASP.NET status: @@ -18771,27 +18298,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M53.8081493S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M34.972714S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:03:19 GMT + - Sat, 16 Jan 2021 17:35:57 GMT expires: - '-1' pragma: @@ -18808,7 +18335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '50' x-powered-by: - ASP.NET status: @@ -18828,27 +18355,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M24.6369669S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M5.7534255S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:03:50 GMT + - Sat, 16 Jan 2021 17:36:27 GMT expires: - '-1' pragma: @@ -18865,7 +18392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '49' x-powered-by: - ASP.NET status: @@ -18885,18 +18412,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M55.5978865S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M36.5628687S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18905,7 +18432,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:04:21 GMT + - Sat, 16 Jan 2021 17:36:59 GMT expires: - '-1' pragma: @@ -18922,7 +18449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '48' x-powered-by: - ASP.NET status: @@ -18942,18 +18469,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M26.409052S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M7.6183005S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18962,7 +18489,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:04:52 GMT + - Sat, 16 Jan 2021 17:37:30 GMT expires: - '-1' pragma: @@ -18979,7 +18506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '47' x-powered-by: - ASP.NET status: @@ -18999,18 +18526,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M57.1700384S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M38.4822885S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19019,7 +18546,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:05:23 GMT + - Sat, 16 Jan 2021 17:38:00 GMT expires: - '-1' pragma: @@ -19036,7 +18563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '46' x-powered-by: - ASP.NET status: @@ -19056,27 +18583,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M29.0874336S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M9.3272787S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:05:55 GMT + - Sat, 16 Jan 2021 17:38:31 GMT expires: - '-1' pragma: @@ -19093,7 +18620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '45' x-powered-by: - ASP.NET status: @@ -19113,18 +18640,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M59.9072714S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M40.1164036S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19133,7 +18660,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:06:25 GMT + - Sat, 16 Jan 2021 17:39:02 GMT expires: - '-1' pragma: @@ -19150,7 +18677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '44' x-powered-by: - ASP.NET status: @@ -19170,18 +18697,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M30.7150477S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M10.9953518S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19190,7 +18717,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:06:57 GMT + - Sat, 16 Jan 2021 17:39:33 GMT expires: - '-1' pragma: @@ -19207,7 +18734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '43' x-powered-by: - ASP.NET status: @@ -19227,27 +18754,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M1.5428337S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M41.7809482S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:07:27 GMT + - Sat, 16 Jan 2021 17:40:04 GMT expires: - '-1' pragma: @@ -19264,7 +18791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '42' x-powered-by: - ASP.NET status: @@ -19284,18 +18811,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M32.3268175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M12.7244461S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19304,7 +18831,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:07:58 GMT + - Sat, 16 Jan 2021 17:40:35 GMT expires: - '-1' pragma: @@ -19321,7 +18848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '41' x-powered-by: - ASP.NET status: @@ -19341,27 +18868,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M3.1645492S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M43.6046093S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:08:28 GMT + - Sat, 16 Jan 2021 17:41:05 GMT expires: - '-1' pragma: @@ -19378,7 +18905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '40' x-powered-by: - ASP.NET status: @@ -19398,18 +18925,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M33.9769953S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M14.4206747S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19418,7 +18945,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:09:00 GMT + - Sat, 16 Jan 2021 17:41:37 GMT expires: - '-1' pragma: @@ -19435,7 +18962,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '39' x-powered-by: - ASP.NET status: @@ -19455,27 +18982,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M4.7910043S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M45.3297346S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:09:30 GMT + - Sat, 16 Jan 2021 17:42:08 GMT expires: - '-1' pragma: @@ -19492,7 +19019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '38' x-powered-by: - ASP.NET status: @@ -19512,18 +19039,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M35.8840167S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M16.1415352S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19532,7 +19059,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:10:01 GMT + - Sat, 16 Jan 2021 17:42:38 GMT expires: - '-1' pragma: @@ -19549,7 +19076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '37' x-powered-by: - ASP.NET status: @@ -19569,27 +19096,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M6.855669S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M46.9587699S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:10:33 GMT + - Sat, 16 Jan 2021 17:43:09 GMT expires: - '-1' pragma: @@ -19606,7 +19133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '36' x-powered-by: - ASP.NET status: @@ -19626,18 +19153,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M37.7340743S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M17.8287774S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19646,7 +19173,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:11:03 GMT + - Sat, 16 Jan 2021 17:43:40 GMT expires: - '-1' pragma: @@ -19663,7 +19190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '35' x-powered-by: - ASP.NET status: @@ -19683,27 +19210,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M8.5639169S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M48.6333284S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:11:34 GMT + - Sat, 16 Jan 2021 17:44:10 GMT expires: - '-1' pragma: @@ -19720,7 +19247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '34' x-powered-by: - ASP.NET status: @@ -19740,27 +19267,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M40.5329599S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M39.163721S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:12:07 GMT + - Sat, 16 Jan 2021 17:45:01 GMT expires: - '-1' pragma: @@ -19777,7 +19304,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '149' x-powered-by: - ASP.NET status: @@ -19797,27 +19324,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M11.3803089S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10.0325142S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:12:37 GMT + - Sat, 16 Jan 2021 17:45:31 GMT expires: - '-1' pragma: @@ -19834,7 +19361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '148' x-powered-by: - ASP.NET status: @@ -19854,27 +19381,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M42.1714038S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H40.9143666S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:13:08 GMT + - Sat, 16 Jan 2021 17:46:03 GMT expires: - '-1' pragma: @@ -19891,7 +19418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '147' x-powered-by: - ASP.NET status: @@ -19911,27 +19438,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M13.1059017S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M11.7266911S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:13:38 GMT + - Sat, 16 Jan 2021 17:46:34 GMT expires: - '-1' pragma: @@ -19948,7 +19475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '146' x-powered-by: - ASP.NET status: @@ -19968,27 +19495,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M44.2282363S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M42.5729102S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:14:10 GMT + - Sat, 16 Jan 2021 17:47:05 GMT expires: - '-1' pragma: @@ -20005,7 +19532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '145' x-powered-by: - ASP.NET status: @@ -20025,27 +19552,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M15.1368697S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M13.6233733S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:14:41 GMT + - Sat, 16 Jan 2021 17:47:36 GMT expires: - '-1' pragma: @@ -20062,7 +19589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '144' x-powered-by: - ASP.NET status: @@ -20082,27 +19609,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M46.06727S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M44.6391425S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:15:11 GMT + - Sat, 16 Jan 2021 17:48:07 GMT expires: - '-1' pragma: @@ -20119,7 +19646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '143' x-powered-by: - ASP.NET status: @@ -20139,27 +19666,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M16.9498886S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M15.4536259S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:15:42 GMT + - Sat, 16 Jan 2021 17:48:37 GMT expires: - '-1' pragma: @@ -20176,7 +19703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '142' x-powered-by: - ASP.NET status: @@ -20196,27 +19723,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M47.8164288S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M46.3397621S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:16:14 GMT + - Sat, 16 Jan 2021 17:49:09 GMT expires: - '-1' pragma: @@ -20233,7 +19760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '141' x-powered-by: - ASP.NET status: @@ -20253,27 +19780,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M19.3111561S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M17.7423367S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:16:45 GMT + - Sat, 16 Jan 2021 17:49:40 GMT expires: - '-1' pragma: @@ -20290,7 +19817,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '140' x-powered-by: - ASP.NET status: @@ -20310,27 +19837,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M50.1288932S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M48.5242069S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:17:15 GMT + - Sat, 16 Jan 2021 17:50:11 GMT expires: - '-1' pragma: @@ -20347,7 +19874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '139' x-powered-by: - ASP.NET status: @@ -20367,27 +19894,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M21.0484502S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M19.2891195S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:17:47 GMT + - Sat, 16 Jan 2021 17:50:41 GMT expires: - '-1' pragma: @@ -20404,7 +19931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '138' x-powered-by: - ASP.NET status: @@ -20424,27 +19951,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M53.812252S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M50.1867165S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:18:19 GMT + - Sat, 16 Jan 2021 17:51:12 GMT expires: - '-1' pragma: @@ -20461,7 +19988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '137' x-powered-by: - ASP.NET status: @@ -20481,27 +20008,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M24.7753689S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M21.2432581S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:18:50 GMT + - Sat, 16 Jan 2021 17:51:43 GMT expires: - '-1' pragma: @@ -20518,7 +20045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '136' x-powered-by: - ASP.NET status: @@ -20538,27 +20065,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M55.6268078S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M52.1179517S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:19:21 GMT + - Sat, 16 Jan 2021 17:52:14 GMT expires: - '-1' pragma: @@ -20575,7 +20102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '135' x-powered-by: - ASP.NET status: @@ -20595,27 +20122,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M26.5164037S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M23.1020726S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:19:52 GMT + - Sat, 16 Jan 2021 17:52:45 GMT expires: - '-1' pragma: @@ -20632,7 +20159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '134' x-powered-by: - ASP.NET status: @@ -20652,27 +20179,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M57.4454698S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M53.9868787S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:20:23 GMT + - Sat, 16 Jan 2021 17:53:16 GMT expires: - '-1' pragma: @@ -20689,7 +20216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '133' x-powered-by: - ASP.NET status: @@ -20709,27 +20236,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M28.2358131S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M24.9397421S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:20:53 GMT + - Sat, 16 Jan 2021 17:53:46 GMT expires: - '-1' pragma: @@ -20746,7 +20273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '132' x-powered-by: - ASP.NET status: @@ -20766,27 +20293,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M59.3953226S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M55.7847363S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:21:25 GMT + - Sat, 16 Jan 2021 17:54:17 GMT expires: - '-1' pragma: @@ -20803,7 +20330,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '131' x-powered-by: - ASP.NET status: @@ -20823,27 +20350,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M30.2588286S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M27.0004713S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:21:56 GMT + - Sat, 16 Jan 2021 17:54:49 GMT expires: - '-1' pragma: @@ -20860,7 +20387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '130' x-powered-by: - ASP.NET status: @@ -20880,27 +20407,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1.0699284S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M58.7264163S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:22:26 GMT + - Sat, 16 Jan 2021 17:55:21 GMT expires: - '-1' pragma: @@ -20917,7 +20444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '129' x-powered-by: - ASP.NET status: @@ -20937,27 +20464,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H31.9156105S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M29.6949038S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:22:58 GMT + - Sat, 16 Jan 2021 17:55:51 GMT expires: - '-1' pragma: @@ -20974,7 +20501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '128' x-powered-by: - ASP.NET status: @@ -20994,27 +20521,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M2.7219978S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M0.6173018S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:23:28 GMT + - Sat, 16 Jan 2021 17:56:22 GMT expires: - '-1' pragma: @@ -21031,7 +20558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '127' x-powered-by: - ASP.NET status: @@ -21051,18 +20578,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M35.4284582S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M31.404468S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -21071,7 +20598,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:24:01 GMT + - Sat, 16 Jan 2021 17:56:54 GMT expires: - '-1' pragma: @@ -21088,7 +20615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '126' x-powered-by: - ASP.NET status: @@ -21108,18 +20635,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M7.3870247S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M2.233317S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -21128,7 +20655,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:24:33 GMT + - Sat, 16 Jan 2021 17:57:23 GMT expires: - '-1' pragma: @@ -21145,7 +20672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '125' x-powered-by: - ASP.NET status: @@ -21165,27 +20692,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M38.3253969S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M33.0274265S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:25:04 GMT + - Sat, 16 Jan 2021 17:57:55 GMT expires: - '-1' pragma: @@ -21202,7 +20729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '124' x-powered-by: - ASP.NET status: @@ -21222,27 +20749,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M9.1967S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M3.9367333S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:25:34 GMT + - Sat, 16 Jan 2021 17:58:26 GMT expires: - '-1' pragma: @@ -21259,7 +20786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '123' x-powered-by: - ASP.NET status: @@ -21279,27 +20806,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M40.0569682S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M34.9446645S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:26:06 GMT + - Sat, 16 Jan 2021 17:58:56 GMT expires: - '-1' pragma: @@ -21316,7 +20843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '122' x-powered-by: - ASP.NET status: @@ -21336,27 +20863,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M10.9498493S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M5.77636S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:26:37 GMT + - Sat, 16 Jan 2021 17:59:28 GMT expires: - '-1' pragma: @@ -21373,7 +20900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '121' x-powered-by: - ASP.NET status: @@ -21393,27 +20920,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M41.8111848S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M36.6276873S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:27:07 GMT + - Sat, 16 Jan 2021 17:59:59 GMT expires: - '-1' pragma: @@ -21430,7 +20957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '120' x-powered-by: - ASP.NET status: @@ -21450,27 +20977,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M12.768776S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M7.5426906S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:27:39 GMT + - Sat, 16 Jan 2021 18:00:30 GMT expires: - '-1' pragma: @@ -21487,7 +21014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '119' x-powered-by: - ASP.NET status: @@ -21507,27 +21034,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M43.8840736S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M38.5081859S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:28:10 GMT + - Sat, 16 Jan 2021 18:01:01 GMT expires: - '-1' pragma: @@ -21544,7 +21071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '118' x-powered-by: - ASP.NET status: @@ -21564,18 +21091,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M15.5826925S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M9.3872988S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -21584,7 +21111,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:28:41 GMT + - Sat, 16 Jan 2021 18:01:32 GMT expires: - '-1' pragma: @@ -21601,7 +21128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '117' x-powered-by: - ASP.NET status: @@ -21621,27 +21148,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M46.4684958S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M40.2974288S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:29:12 GMT + - Sat, 16 Jan 2021 18:02:03 GMT expires: - '-1' pragma: @@ -21658,7 +21185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '116' x-powered-by: - ASP.NET status: @@ -21678,27 +21205,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M17.5176775S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M11.0884276S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:29:43 GMT + - Sat, 16 Jan 2021 18:02:33 GMT expires: - '-1' pragma: @@ -21715,7 +21242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '115' x-powered-by: - ASP.NET status: @@ -21735,27 +21262,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M48.3829273S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M41.9914897S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:30:14 GMT + - Sat, 16 Jan 2021 18:03:04 GMT expires: - '-1' pragma: @@ -21772,7 +21299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '114' x-powered-by: - ASP.NET status: @@ -21792,27 +21319,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M20.602213S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M12.7786529S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:30:47 GMT + - Sat, 16 Jan 2021 18:03:34 GMT expires: - '-1' pragma: @@ -21829,7 +21356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '113' x-powered-by: - ASP.NET status: @@ -21849,27 +21376,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M51.5506304S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M43.6116917S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:31:17 GMT + - Sat, 16 Jan 2021 18:04:06 GMT expires: - '-1' pragma: @@ -21886,7 +21413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '112' x-powered-by: - ASP.NET status: @@ -21906,27 +21433,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M22.4029829S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M14.4547877S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:31:48 GMT + - Sat, 16 Jan 2021 18:04:36 GMT expires: - '-1' pragma: @@ -21943,7 +21470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '111' x-powered-by: - ASP.NET status: @@ -21963,27 +21490,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M53.2953613S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M45.4240791S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:32:18 GMT + - Sat, 16 Jan 2021 18:05:07 GMT expires: - '-1' pragma: @@ -22000,7 +21527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '110' x-powered-by: - ASP.NET status: @@ -22020,18 +21547,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M24.2392992S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M16.2401364S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22040,7 +21567,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:32:50 GMT + - Sat, 16 Jan 2021 18:05:38 GMT expires: - '-1' pragma: @@ -22057,7 +21584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '109' x-powered-by: - ASP.NET status: @@ -22077,18 +21604,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M55.5035854S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M47.0341136S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22097,7 +21624,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:33:21 GMT + - Sat, 16 Jan 2021 18:06:09 GMT expires: - '-1' pragma: @@ -22114,7 +21641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '108' x-powered-by: - ASP.NET status: @@ -22134,27 +21661,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M26.4338426S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M17.856781S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:33:52 GMT + - Sat, 16 Jan 2021 18:06:40 GMT expires: - '-1' pragma: @@ -22171,7 +21698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '107' x-powered-by: - ASP.NET status: @@ -22191,18 +21718,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M57.2303334S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M48.7523346S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22211,7 +21738,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:34:23 GMT + - Sat, 16 Jan 2021 18:07:10 GMT expires: - '-1' pragma: @@ -22228,7 +21755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '106' x-powered-by: - ASP.NET status: @@ -22248,18 +21775,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M28.1108528S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H22M19.6055146S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22268,7 +21795,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:34:54 GMT + - Sat, 16 Jan 2021 18:07:42 GMT expires: - '-1' pragma: @@ -22285,7 +21812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '105' x-powered-by: - ASP.NET status: @@ -22305,27 +21832,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M58.869613S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H22M50.4635558S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:35:24 GMT + - Sat, 16 Jan 2021 18:08:13 GMT expires: - '-1' pragma: @@ -22342,7 +21869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '104' x-powered-by: - ASP.NET status: @@ -22362,18 +21889,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M29.7425744S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H23M21.2618111S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22382,7 +21909,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:35:56 GMT + - Sat, 16 Jan 2021 18:08:43 GMT expires: - '-1' pragma: @@ -22399,7 +21926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '103' x-powered-by: - ASP.NET status: @@ -22419,27 +21946,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M0.7103405S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H23M52.1081241S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:36:26 GMT + - Sat, 16 Jan 2021 18:09:14 GMT expires: - '-1' pragma: @@ -22456,7 +21983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '102' x-powered-by: - ASP.NET status: @@ -22476,18 +22003,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M32.6828616S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H24M22.9399651S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22496,7 +22023,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:36:58 GMT + - Sat, 16 Jan 2021 18:09:45 GMT expires: - '-1' pragma: @@ -22513,7 +22040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '101' x-powered-by: - ASP.NET status: @@ -22533,27 +22060,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M3.5480363S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H24M53.7351744S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:37:29 GMT + - Sat, 16 Jan 2021 18:10:15 GMT expires: - '-1' pragma: @@ -22570,7 +22097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '100' x-powered-by: - ASP.NET status: @@ -22590,18 +22117,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M34.5399944S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H25M24.5929952S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22610,7 +22137,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:38:00 GMT + - Sat, 16 Jan 2021 18:10:47 GMT expires: - '-1' pragma: @@ -22627,7 +22154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '99' x-powered-by: - ASP.NET status: @@ -22647,27 +22174,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M5.3383251S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H25M55.4168782S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:38:30 GMT + - Sat, 16 Jan 2021 18:11:17 GMT expires: - '-1' pragma: @@ -22684,7 +22211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '98' x-powered-by: - ASP.NET status: @@ -22704,18 +22231,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M36.1814629S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H26M26.3022009S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22724,7 +22251,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:39:02 GMT + - Sat, 16 Jan 2021 18:11:48 GMT expires: - '-1' pragma: @@ -22741,7 +22268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '97' x-powered-by: - ASP.NET status: @@ -22761,27 +22288,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M7.0756982S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H26M57.0791325S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1160' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:39:32 GMT + - Sat, 16 Jan 2021 18:12:19 GMT expires: - '-1' pragma: @@ -22798,7 +22325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '96' x-powered-by: - ASP.NET status: @@ -22818,18 +22345,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M37.9911216S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H27M27.9353971S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -22838,7 +22365,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:40:04 GMT + - Sat, 16 Jan 2021 18:12:50 GMT expires: - '-1' pragma: @@ -22855,7 +22382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '95' x-powered-by: - ASP.NET status: @@ -22875,27 +22402,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M8.839536S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H27M58.7987202S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1161' content-type: - application/json date: - - Fri, 18 Dec 2020 15:40:34 GMT + - Sat, 16 Jan 2021 18:13:21 GMT expires: - '-1' pragma: @@ -22912,7 +22439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '94' x-powered-by: - ASP.NET status: @@ -22932,27 +22459,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M39.7974188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H28M29.629724S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:41:06 GMT + - Sat, 16 Jan 2021 18:13:52 GMT expires: - '-1' pragma: @@ -22969,7 +22496,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '93' x-powered-by: - ASP.NET status: @@ -22989,27 +22516,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M10.7158969S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H29M0.5189797S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:41:36 GMT + - Sat, 16 Jan 2021 18:14:22 GMT expires: - '-1' pragma: @@ -23026,7 +22553,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '92' x-powered-by: - ASP.NET status: @@ -23046,18 +22573,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M41.5743026S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H29M33.5831167S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -23066,7 +22593,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:42:08 GMT + - Sat, 16 Jan 2021 18:14:56 GMT expires: - '-1' pragma: @@ -23083,7 +22610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '91' x-powered-by: - ASP.NET status: @@ -23103,27 +22630,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M13.1880718S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H30M4.4894267S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1161' + - '1160' content-type: - application/json date: - - Fri, 18 Dec 2020 15:42:39 GMT + - Sat, 16 Jan 2021 18:15:27 GMT expires: - '-1' pragma: @@ -23140,7 +22667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '90' x-powered-by: - ASP.NET status: @@ -23160,18 +22687,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M45.1639697S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H30M35.8358378S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T14:22:25.8392674Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T16:45:22.1851122Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache @@ -23180,7 +22707,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:43:11 GMT + - Sat, 16 Jan 2021 18:15:58 GMT expires: - '-1' pragma: @@ -23197,7 +22724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '89' x-powered-by: - ASP.NET status: @@ -23217,27 +22744,30 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4642a0da-aefd-4fdc-86f3-14bc2980c6bd?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/4642a0da-aefd-4fdc-86f3-14bc2980c6bd","name":"4642a0da-aefd-4fdc-86f3-14bc2980c6bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M12.4470244S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a778405e-6720-4503-a918-682aef55fafc","name":"a778405e-6720-4503-a918-682aef55fafc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H30M43.0389111S","actionsInfo":[1],"errorDetails":[{"errorCode":320001,"errorTitle":"ResourceNotFound","errorString":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"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":"1/17/2021 12:00:00 AM","Backup Size":"42 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T14:22:25.8392674Z","endTime":"2020-12-18T15:43:38.2862918Z","activityId":"710dbafe-413c-11eb-86ad-c03eba45757e"}}' + to vault","duration":"PT0S","status":"Failed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM","Backup Size":"0 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"CompletedWithWarnings","startTime":"2021-01-16T16:45:22.1851122Z","endTime":"2021-01-16T18:16:05.2240233Z","activityId":"3900f356-581a-11eb-a859-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1222' + - '1519' content-type: - application/json date: - - Fri, 18 Dec 2020 15:43:41 GMT + - Sat, 16 Jan 2021 18:16:29 GMT expires: - '-1' pragma: @@ -23254,7 +22784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '88' x-powered-by: - ASP.NET status: @@ -23274,25 +22804,30 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T14:22:25.8392674Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T14:22:29.0691576Z"}}]}' + 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":"TransientDegraded","resourceHealthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T16:45:22.1851122Z","protectedItemDataId":"319190202","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-01-16T16:45:25.5804929Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2677' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:13 GMT + - Sat, 16 Jan 2021 18:16:59 GMT expires: - '-1' pragma: @@ -23308,7 +22843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -23328,24 +22863,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + 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=2020-10-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/2260965787444993099","name":"2260965787444993099","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T14:22:29.0691576Z","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"}},{"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/2260969866504656759","name":"2260969866504656759","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T13:00:35.5434027Z","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"}}]}' + 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/50835616897440","name":"50835616897440","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T16:45:25.5804929Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows"}},{"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/45321252084853","name":"45321252084853","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T15:43:10.6638067Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '2363' + - '2321' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:15 GMT + - Sat, 16 Jan 2021 18:17:01 GMT expires: - '-1' pragma: @@ -23381,25 +22916,30 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T14:22:25.8392674Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T14:22:29.0691576Z"}}]}' + 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":"TransientDegraded","resourceHealthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T16:45:22.1851122Z","protectedItemDataId":"319190202","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-01-16T16:45:25.5804929Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2677' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:17 GMT + - Sat, 16 Jan 2021 18:17:02 GMT expires: - '-1' pragma: @@ -23435,24 +22975,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2260965787444993099?api-version=2019-06-15 + 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/50835616897440?api-version=2020-10-01 response: body: - string: '{"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/2260965787444993099","name":"2260965787444993099","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T14:22:29.0691576Z","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"}}' + string: '{"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/50835616897440","name":"50835616897440","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T16:45:25.5804929Z","recoveryPointAdditionalInfo":"","sourceVMStorageType":"PremiumVMOnPartialPremiumStorage","isSourceVMEncrypted":false,"isInstantIlrSessionActive":false,"recoveryPointTierDetails":[{"type":1,"status":1}],"isManagedVirtualMachine":true,"virtualMachineSize":"Standard_DS1_v2","originalStorageAccountOption":false,"osType":"Windows"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1143' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:20 GMT + - Sat, 16 Jan 2021 18:17:03 GMT expires: - '-1' pragma: @@ -23488,25 +23028,30 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T14:22:25.8392674Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T14:22:29.0691576Z"}}]}' + 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":"TransientDegraded","resourceHealthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T16:45:22.1851122Z","protectedItemDataId":"319190202","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-01-16T16:45:25.5804929Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2677' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:22 GMT + - Sat, 16 Jan 2021 18:17:04 GMT expires: - '-1' pragma: @@ -23542,24 +23087,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -i -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2260969866504656759?api-version=2019-06-15 + 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/45321252084853?api-version=2020-10-01 response: body: - string: '{"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/2260969866504656759","name":"2260969866504656759","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T13:00:35.5434027Z","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"}}' + string: '{"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/45321252084853","name":"45321252084853","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T15:43:10.6638067Z","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"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1165' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:24 GMT + - Sat, 16 Jan 2021 18:17:05 GMT expires: - '-1' pragma: @@ -23595,12 +23140,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -23612,7 +23157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:26 GMT + - Sat, 16 Jan 2021 18:17:06 GMT expires: - '-1' pragma: @@ -23628,7 +23173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -23648,25 +23193,30 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T14:22:25.8392674Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T14:22:29.0691576Z"}}]}' + 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":"TransientDegraded","resourceHealthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T16:45:22.1851122Z","protectedItemDataId":"319190202","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-01-16T16:45:25.5804929Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2677' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:28 GMT + - Sat, 16 Jan 2021 18:17:07 GMT expires: - '-1' pragma: @@ -23703,25 +23253,30 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"2020-12-18T14:22:25.8392674Z","protectedItemDataId":"2260912567260758581","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":"2020-12-18T14:22:29.0691576Z"}}]}' + 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":"TransientDegraded","resourceHealthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}]}},"friendlyName":"clitest-vm000003","virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003","protectionStatus":"Healthy","protectionState":"Protected","healthStatus":"ActionRequired","healthDetails":[{"code":320001,"title":"ResourceNotFound","message":"Could + not perform the operation as VM no longer exists.","recommendations":["Stop + protecting virtual machine without deleting backup data. More details at http://go.microsoft.com/fwlink/?LinkId=808124 + "]}],"lastBackupStatus":"CompletedWithWarnings","lastBackupTime":"2021-01-16T16:45:22.1851122Z","protectedItemDataId":"319190202","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-01-16T16:45:25.5804929Z"}}]}' headers: cache-control: - no-cache content-length: - - '2343' + - '2677' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:30 GMT + - Sat, 16 Jan 2021 18:17:08 GMT expires: - '-1' pragma: @@ -23737,7 +23292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -23760,28 +23315,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 15:44:33 GMT + - Sat, 16 Jan 2021 18:17:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -23810,15 +23365,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -23827,7 +23382,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:35 GMT + - Sat, 16 Jan 2021 18:17:10 GMT expires: - '-1' pragma: @@ -23864,15 +23419,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -23881,7 +23436,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:36 GMT + - Sat, 16 Jan 2021 18:17:11 GMT expires: - '-1' pragma: @@ -23918,15 +23473,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -23935,7 +23490,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:38 GMT + - Sat, 16 Jan 2021 18:17:13 GMT expires: - '-1' pragma: @@ -23972,15 +23527,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -23989,7 +23544,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:39 GMT + - Sat, 16 Jan 2021 18:17:14 GMT expires: - '-1' pragma: @@ -24026,15 +23581,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -24043,7 +23598,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:41 GMT + - Sat, 16 Jan 2021 18:17:15 GMT expires: - '-1' pragma: @@ -24080,15 +23635,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -24097,7 +23652,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:42 GMT + - Sat, 16 Jan 2021 18:17:18 GMT expires: - '-1' pragma: @@ -24134,15 +23689,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"InProgress","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -24151,7 +23706,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:44 GMT + - Sat, 16 Jan 2021 18:17:19 GMT expires: - '-1' pragma: @@ -24188,24 +23743,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2469da22-7204-40df-bd50-7a2a005fe84a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 response: body: - string: '{"id":"2469da22-7204-40df-bd50-7a2a005fe84a","name":"2469da22-7204-40df-bd50-7a2a005fe84a","status":"Succeeded","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"2020-12-18T15:44:33.3150655Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3d901a7b-6839-4028-ac16-63a2f9200402"}}' + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:46 GMT + - Sat, 16 Jan 2021 18:17:20 GMT expires: - '-1' pragma: @@ -24242,16 +23797,124 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 + response: + body: + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"InProgress","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 18:17: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f193100a-31db-433e-a160-1443585cb920?api-version=2020-10-01 + response: + body: + string: '{"id":"f193100a-31db-433e-a160-1443585cb920","name":"f193100a-31db-433e-a160-1443585cb920","status":"Succeeded","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"2021-01-16T18:17:08.8930943Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"73c4c5aa-1957-4755-9b84-bdb67e7ecc1a"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 18:17: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3d901a7b-6839-4028-ac16-63a2f9200402?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/73c4c5aa-1957-4755-9b84-bdb67e7ecc1a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3d901a7b-6839-4028-ac16-63a2f9200402","name":"3d901a7b-6839-4028-ac16-63a2f9200402","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.6325962S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"2"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T15:44:33.3150655Z","endTime":"2020-12-18T15:44:44.9476617Z","activityId":"e9d4f166-4147-11eb-9cc7-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/73c4c5aa-1957-4755-9b84-bdb67e7ecc1a","name":"73c4c5aa-1957-4755-9b84-bdb67e7ecc1a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12.8952469S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"2"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-16T18:17:08.8930943Z","endTime":"2021-01-16T18:17:21.7883412Z","activityId":"0b210335-5827-11eb-9e31-c8f750f92764"}}' headers: cache-control: - no-cache @@ -24260,7 +23923,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:48 GMT + - Sat, 16 Jan 2021 18:17:23 GMT expires: - '-1' pragma: @@ -24299,8 +23962,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -24325,7 +23988,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:44:51 GMT + - Sat, 16 Jan 2021 18:17:24 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_scenario.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_scenario.yaml index 663de5df965..0d4506df35a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_scenario.yaml @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T15%3A45%3A15.4419135Z''\"","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-01-16T15%3A39%3A59.899795Z''\"","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' + - '538' content-type: - application/json date: - - Fri, 18 Dec 2020 15:45:16 GMT + - Sat, 16 Jan 2021 15:39:59 GMT expires: - '-1' pragma: @@ -64,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"2020-12-18T15:44:58Z"},"properties":{"provisioningState":"Succeeded"}}' + 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-01-16T15:39:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:45:16 GMT + - Sat, 16 Jan 2021 15:40:00 GMT expires: - '-1' pragma: @@ -160,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 15:45:17 GMT + - Sat, 16 Jan 2021 15:40:01 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 15:50:17 GMT + - Sat, 16 Jan 2021 15:45:01 GMT source-age: - - '0' + - '283' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - HIT, HIT x-cache-hits: - - 3, 1 + - 1, 1 x-content-type-options: - nosniff x-fastly-request-id: - - db008e43ea181c8845629374357275a91ce6641e + - 1887d7c2fd2cda1a3585855677059e8e80e7eb93 x-frame-options: - deny x-github-request-id: - - EAC4:209C:2A64F4:304FE3:5FDCCB8B + - 6C68:61E7:19D45A:1B41EF:6002E199 x-served-by: - - cache-mia11356-MIA + - cache-sin18022-SIN x-timer: - - S1608306318.861648,VS0,VE37 + - S1610811601.348568,VS0,VE242 x-xss-protection: - 1; mode=block status: @@ -198,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -208,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -225,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:45:18 GMT + - Sat, 16 Jan 2021 15:40:00 GMT expires: - '-1' pragma: @@ -293,18 +290,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_7btr9vjNrdg1yc3PjCw2mjY5CZhLqv0g","name":"vm_deploy_7btr9vjNrdg1yc3PjCw2mjY5CZhLqv0g","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13771569790401592027","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T15:45:23.4077079Z","duration":"PT3.4126626S","correlationId":"3d1735f0-7ba9-48ff-96c1-cb94590dae07","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_x0I8ZteFltwCV9Nq5JeyWWUtXpc9waUX","name":"vm_deploy_x0I8ZteFltwCV9Nq5JeyWWUtXpc9waUX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17440881944373198504","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-16T15:40:04.1085942Z","duration":"PT1.3718935S","correlationId":"1cd6dae5-f0de-4317-a2d3-aa5a375f5bb5","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_7btr9vjNrdg1yc3PjCw2mjY5CZhLqv0g/operationStatuses/08585933005654825851?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_x0I8ZteFltwCV9Nq5JeyWWUtXpc9waUX/operationStatuses/08585907952827409422?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -312,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:45:24 GMT + - Sat, 16 Jan 2021 15:40:04 GMT expires: - '-1' pragma: @@ -340,10 +337,96 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907952827409422?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: + - Sat, 16 Jan 2021 15:40:34 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907952827409422?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: + - Sat, 16 Jan 2021 15:41:04 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933005654825851?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907952827409422?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -355,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:45:55 GMT + - Sat, 16 Jan 2021 15:41:34 GMT expires: - '-1' pragma: @@ -383,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585933005654825851?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585907952827409422?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -398,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:26 GMT + - Sat, 16 Jan 2021 15:42:04 GMT expires: - '-1' pragma: @@ -426,22 +509,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_7btr9vjNrdg1yc3PjCw2mjY5CZhLqv0g","name":"vm_deploy_7btr9vjNrdg1yc3PjCw2mjY5CZhLqv0g","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13771569790401592027","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T15:46:14.0793664Z","duration":"PT54.0843211S","correlationId":"3d1735f0-7ba9-48ff-96c1-cb94590dae07","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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_x0I8ZteFltwCV9Nq5JeyWWUtXpc9waUX","name":"vm_deploy_x0I8ZteFltwCV9Nq5JeyWWUtXpc9waUX","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17440881944373198504","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-16T15:41:43.5666762Z","duration":"PT1M40.8299755S","correlationId":"1cd6dae5-f0de-4317-a2d3-aa5a375f5bb5","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: - - '4086' + - '4088' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:27 GMT + - Sat, 16 Jan 2021 15:42:04 GMT expires: - '-1' pragma: @@ -469,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -478,16 +561,16 @@ interactions: \ \"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\": \"0b2506c5-df0c-4cd8-8a7a-2d9b5cef8302\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ea07eb08-251e-4876-9cfd-290a588bc0e4\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_35b4be0d91254c9f8e130ccf116cee00\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\",\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_disk1_35b4be0d91254c9f8e130ccf116cee00\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\"\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\": @@ -501,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T15:46:29+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T15:42:06+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_35b4be0d91254c9f8e130ccf116cee00\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T15:45:46.0963753+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T15:40:29.2890995+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T15:46:11.2060741+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-16T15:41:41.7265201+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}" @@ -518,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3449' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:28 GMT + - Sat, 16 Jan 2021 15:42:06 GMT expires: - '-1' pragma: @@ -539,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31975 status: code: 200 message: OK @@ -547,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -557,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"564d995c-6597-4b09-be77-2ab9a3d85243\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3954831f-9424-48ab-a537-70e29ae262b7\\\"\",\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\": \"94c57978-5cba-4177-b96f-34719df5ed3a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"aed77804-141d-4285-b92c-215800ec1600\",\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/\\\"564d995c-6597-4b09-be77-2ab9a3d85243\\\"\",\r\n + \ \"etag\": \"W/\\\"3954831f-9424-48ab-a537-70e29ae262b7\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -582,8 +662,8 @@ interactions: \ },\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\": - \"snoarmtn2mjubisf1ocf1nqqbc.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-C7-48-30\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"le4m1z04jd0u3mmdzawsec24vb.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-56-38-9A\",\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\": @@ -597,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:29 GMT + - Sat, 16 Jan 2021 15:42:06 GMT etag: - - W/"564d995c-6597-4b09-be77-2ab9a3d85243" + - W/"3954831f-9424-48ab-a537-70e29ae262b7" expires: - '-1' pragma: @@ -616,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1f83805-8eb2-4b96-9b09-6036adaacb1f + - 5d687e9c-bc28-4e29-b3ac-bec855a79fa8 status: code: 200 message: OK @@ -624,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -634,21 +714,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"471acd66-9ea7-4c9f-be78-50ce98258e77\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ffdcedd7-ec22-4aa1-b5af-782e1969a331\\\"\",\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\": \"61d12bc1-6013-4ee4-8e5e-1b8cdcff8634\",\r\n - \ \"ipAddress\": \"13.76.186.231\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7edf4c75-1886-4e9f-a934-b6b76d3b8c59\",\r\n + \ \"ipAddress\": \"13.76.41.65\",\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 @@ -657,13 +734,13 @@ interactions: cache-control: - no-cache content-length: - - '1182' + - '1180' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:29 GMT + - Sat, 16 Jan 2021 15:42:06 GMT etag: - - W/"471acd66-9ea7-4c9f-be78-50ce98258e77" + - W/"ffdcedd7-ec22-4aa1-b5af-782e1969a331" expires: - '-1' pragma: @@ -680,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba68c164-bfd2-4072-a5d1-0ac2b7a0af32 + - dcba40ef-0108-4355-b888-623670f8615f status: code: 200 message: OK @@ -698,7 +775,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -707,16 +784,16 @@ interactions: \ \"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\": \"0b2506c5-df0c-4cd8-8a7a-2d9b5cef8302\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ea07eb08-251e-4876-9cfd-290a588bc0e4\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_35b4be0d91254c9f8e130ccf116cee00\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\",\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_disk1_35b4be0d91254c9f8e130ccf116cee00\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\"\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\": @@ -730,16 +807,16 @@ interactions: \ {\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\": \"2020-12-18T15:46:59+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-16T15:42:30+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_35b4be0d91254c9f8e130ccf116cee00\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_4247173719034ce6a6e5a534890dee17\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T15:45:46.0963753+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T15:40:29.2890995+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\": \"2020-12-18T15:46:11.2060741+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-16T15:41:41.7265201+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}" @@ -747,11 +824,11 @@ interactions: cache-control: - no-cache content-length: - - '3419' + - '3428' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 15:46:59 GMT + - Sat, 16 Jan 2021 15:42:30 GMT expires: - '-1' pragma: @@ -768,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31974 status: code: 200 message: OK @@ -786,24 +863,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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''2020-12-18T15%3A45%3A15.4419135Z''\"","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-01-16T15%3A39%3A59.899795Z''\"","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' + - '538' content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:00 GMT + - Sat, 16 Jan 2021 15:42:30 GMT expires: - '-1' pragma: @@ -835,15 +912,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-19T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-19T01:30: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-01-17T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -852,7 +929,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:02 GMT + - Sat, 16 Jan 2021 15:42:31 GMT expires: - '-1' pragma: @@ -868,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -888,24 +965,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"value":[]}' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '34056' content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:05 GMT + - Sat, 16 Jan 2021 15:42:32 GMT expires: - '-1' pragma: @@ -921,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -943,28 +1020,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + 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=2020-10-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/bab8fba8-3941-491d-a98b-3a08498d562b?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/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:07 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -972,7 +1049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -992,12 +1069,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1007,11 +1084,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:08 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1039,12 +1116,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1054,11 +1131,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:09 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1086,12 +1163,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1101,11 +1178,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:11 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1133,12 +1210,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1148,11 +1225,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:12 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1180,12 +1257,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1195,11 +1272,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:14 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1227,12 +1304,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1242,11 +1319,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:15 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1274,12 +1351,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' @@ -1289,11 +1366,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:18 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1321,22 +1398,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/bab8fba8-3941-491d-a98b-3a08498d562b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 15:47:19 GMT + - Sat, 16 Jan 2021 15:42: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/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1347,6 +1428,96 @@ interactions: - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 15:42: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/operationResults/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/daf7f61e-e2ea-458c-8746-e8d5ff9ead18?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sat, 16 Jan 2021 15:42:45 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 @@ -1364,24 +1535,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-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/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"}}]}' + 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;asebvtrg;asebvtseavm3/protectableItems/vm;iaasvmcontainerv2;asebvtrg;asebvtseavm3","name":"iaasvmcontainerv2;asebvtrg;asebvtseavm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm3","virtualMachineVersion":"Compute","resourceGroup":"ASEBVTRG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"asebvtseavm3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;chandrikarg;testcanarygeetasql/protectableItems/vm;iaasvmcontainerv2;chandrikarg;testcanarygeetasql","name":"iaasvmcontainerv2;chandrikarg;testcanarygeetasql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testcanarygeetasql","virtualMachineVersion":"Compute","resourceGroup":"chandrikarg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testcanarygeetasql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5/protectableItems/vm;iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"iaasvmcontainerv2;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5","virtualMachineVersion":"Compute","resourceGroup":"clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmxj2c5","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;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig/protectableItems/vm;iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"iaasvmcontainerv2;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig","virtualMachineVersion":"Compute","resourceGroup":"clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmjunig","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff/protectableItems/vm;iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"iaasvmcontainerv2;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmvsxff","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi/protectableItems/vm;iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"iaasvmcontainerv2;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-vmsruqi","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;gesahoo;gesahoobanner10/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner10","name":"iaasvmcontainerv2;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner10","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner11/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner11","name":"iaasvmcontainerv2;gesahoo;gesahoobanner11","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner11","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner11","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoobanner12/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoobanner12","name":"iaasvmcontainerv2;gesahoo;gesahoobanner12","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner12","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoobanner12","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner5","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner5","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner6","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner6","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner7","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner7","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner7","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner8","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner8","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbanner9","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbanner9","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbanner9","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","name":"iaasvmcontainerv2;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlbannervm4","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress1","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress1","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","name":"iaasvmcontainerv2;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlinprogress2","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3/protectableItems/vm;iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","name":"iaasvmcontainerv2;gesahoo;gesahoosqlvminprogress3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlvminprogress3","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"gesahoosqlvminprogress3","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","name":"iaasvmcontainerv2;gesahoo;sqlautobackupgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlautobackupgeeta","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlautobackupgeeta","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary/protectableItems/vm;iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","name":"iaasvmcontainerv2;gesahoo;sqlbannergeetacanary","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlbannergeetacanary","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sqlbannergeetacanary","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testgesahoosql/protectableItems/vm;iaasvmcontainerv2;gesahoo;testgesahoosql","name":"iaasvmcontainerv2;gesahoo;testgesahoosql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testgesahoosql","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testgesahoosql","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;gesahoo;testprodgesahoo/protectableItems/vm;iaasvmcontainerv2;gesahoo;testprodgesahoo","name":"iaasvmcontainerv2;gesahoo;testprodgesahoo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/testProdGesahoo","virtualMachineVersion":"Compute","resourceGroup":"gesahoo","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testProdGesahoo","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;nilay-rg;nilsha-test/protectableItems/vm;iaasvmcontainerv2;nilay-rg;nilsha-test","name":"iaasvmcontainerv2;nilay-rg;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test","virtualMachineVersion":"Compute","resourceGroup":"Nilay-RG","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"nilsha-test","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;sarath-rg;sarath-sqltestvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","name":"iaasvmcontainerv2;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarath-sqltestvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathpstest001/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathpstest001","name":"iaasvmcontainerv2;sarath-rg;sarathpstest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathPSTest001","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sarath-rg;sarathvm/protectableItems/vm;iaasvmcontainerv2;sarath-rg;sarathvm","name":"iaasvmcontainerv2;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","virtualMachineVersion":"Compute","resourceGroup":"sarath-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sarathvm","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"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","name":"iaasvmcontainerv2;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"dsadsa","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;shswain-rg-restoredata;sddsds/protectableItems/vm;iaasvmcontainerv2;shswain-rg-restoredata;sddsds","name":"iaasvmcontainerv2;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds","virtualMachineVersion":"Compute","resourceGroup":"shswain-rg-restoredata","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sddsds","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;sisi-rsv;sisi-mercury/protectableItems/vm;iaasvmcontainerv2;sisi-rsv;sisi-mercury","name":"iaasvmcontainerv2;sisi-rsv;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","virtualMachineVersion":"Compute","resourceGroup":"sisi-RSV","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"sisi-mercury","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1271' + - '35316' content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:21 GMT + - Sat, 16 Jan 2021 15:42:45 GMT expires: - '-1' pragma: @@ -1423,28 +1594,28 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2019-06-15 + - 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/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 15:47:23 GMT + - Sat, 16 Jan 2021 15:42: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2019-06-15 + - 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/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1452,7 +1623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -1472,15 +1643,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1489,7 +1660,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:25 GMT + - Sat, 16 Jan 2021 15:42:47 GMT expires: - '-1' pragma: @@ -1525,15 +1696,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1542,7 +1713,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:27 GMT + - Sat, 16 Jan 2021 15:42:48 GMT expires: - '-1' pragma: @@ -1578,15 +1749,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1595,7 +1766,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:28 GMT + - Sat, 16 Jan 2021 15:42:49 GMT expires: - '-1' pragma: @@ -1631,15 +1802,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1648,7 +1819,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:30 GMT + - Sat, 16 Jan 2021 15:42:51 GMT expires: - '-1' pragma: @@ -1684,15 +1855,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1701,7 +1872,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:31 GMT + - Sat, 16 Jan 2021 15:42:52 GMT expires: - '-1' pragma: @@ -1737,15 +1908,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1754,7 +1925,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:33 GMT + - Sat, 16 Jan 2021 15:42:53 GMT expires: - '-1' pragma: @@ -1790,15 +1961,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1807,7 +1978,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:34 GMT + - Sat, 16 Jan 2021 15:42:55 GMT expires: - '-1' pragma: @@ -1843,15 +2014,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1860,7 +2031,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:37 GMT + - Sat, 16 Jan 2021 15:42:56 GMT expires: - '-1' pragma: @@ -1896,15 +2067,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1913,7 +2084,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:38 GMT + - Sat, 16 Jan 2021 15:42:57 GMT expires: - '-1' pragma: @@ -1949,15 +2120,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1966,7 +2137,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:40 GMT + - Sat, 16 Jan 2021 15:42:59 GMT expires: - '-1' pragma: @@ -2002,15 +2173,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2019,7 +2190,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:42 GMT + - Sat, 16 Jan 2021 15:43:00 GMT expires: - '-1' pragma: @@ -2055,15 +2226,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2072,7 +2243,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:43 GMT + - Sat, 16 Jan 2021 15:43:01 GMT expires: - '-1' pragma: @@ -2108,15 +2279,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2125,7 +2296,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:45 GMT + - Sat, 16 Jan 2021 15:43:03 GMT expires: - '-1' pragma: @@ -2161,15 +2332,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2178,7 +2349,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:46 GMT + - Sat, 16 Jan 2021 15:43:04 GMT expires: - '-1' pragma: @@ -2214,15 +2385,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2231,7 +2402,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:48 GMT + - Sat, 16 Jan 2021 15:43:05 GMT expires: - '-1' pragma: @@ -2267,15 +2438,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2284,7 +2455,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:49 GMT + - Sat, 16 Jan 2021 15:43:06 GMT expires: - '-1' pragma: @@ -2320,15 +2491,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2337,7 +2508,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:51 GMT + - Sat, 16 Jan 2021 15:43:08 GMT expires: - '-1' pragma: @@ -2373,15 +2544,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2390,7 +2561,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:52 GMT + - Sat, 16 Jan 2021 15:43:09 GMT expires: - '-1' pragma: @@ -2426,15 +2597,15 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"InProgress","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2443,7 +2614,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:54 GMT + - Sat, 16 Jan 2021 15:43:10 GMT expires: - '-1' pragma: @@ -2479,24 +2650,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/4e395a93-a0da-4c63-b134-20c8f2ed9853?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"4e395a93-a0da-4c63-b134-20c8f2ed9853","name":"4e395a93-a0da-4c63-b134-20c8f2ed9853","status":"Succeeded","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"2020-12-18T15:47:23.9290289Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"762822b2-70a7-4811-b980-1a11105de9e0"}}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:55 GMT + - Sat, 16 Jan 2021 15:43:11 GMT expires: - '-1' pragma: @@ -2532,32 +2703,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/762822b2-70a7-4811-b980-1a11105de9e0?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/762822b2-70a7-4811-b980-1a11105de9e0","name":"762822b2-70a7-4811-b980-1a11105de9e0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30.7743905S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T15:47:23.9290289Z","endTime":"2020-12-18T15:47:54.7034194Z","activityId":"431c88c7-4148-11eb-b49f-c03eba45757e"}}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:47:58 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -2567,7 +2736,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '129' x-powered-by: - ASP.NET status: @@ -2581,30 +2750,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-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","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"}}]}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1220' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:01 GMT + - Sat, 16 Jan 2021 15:43:14 GMT expires: - '-1' pragma: @@ -2620,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '128' x-powered-by: - ASP.NET status: @@ -2634,30 +2803,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --workload-type --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-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","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":"2260912566921249654","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"}}]}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:03 GMT + - Sat, 16 Jan 2021 15:43:15 GMT expires: - '-1' pragma: @@ -2673,7 +2842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '127' x-powered-by: - ASP.NET status: @@ -2687,30 +2856,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-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","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":"2260912566921249654","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"}}]}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:04 GMT + - Sat, 16 Jan 2021 15:43:16 GMT expires: - '-1' pragma: @@ -2726,66 +2895,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '126' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-01-17T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '113' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"InProgress","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"0001-01-01T00:00:00"}' 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/43bdeede-6aa0-4835-9006-0bf3c1f28c03?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 15:48:06 GMT + - Sat, 16 Jan 2021 15:43: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/43bdeede-6aa0-4835-9006-0bf3c1f28c03?api-version=2016-12-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: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2794,30 +2962,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/43bdeede-6aa0-4835-9006-0bf3c1f28c03?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f426cedc-91a5-4b6a-b73c-345796fab06d?api-version=2020-10-01 response: body: - string: '{"id":"43bdeede-6aa0-4835-9006-0bf3c1f28c03","name":"43bdeede-6aa0-4835-9006-0bf3c1f28c03","status":"Succeeded","startTime":"2020-12-18T15:48:07.38607Z","endTime":"2020-12-18T15:48:07.38607Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c0445d56-37fb-4a93-a540-88b6126dcdb4"}}' + string: '{"id":"f426cedc-91a5-4b6a-b73c-345796fab06d","name":"f426cedc-91a5-4b6a-b73c-345796fab06d","status":"Succeeded","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"2021-01-16T15:42:46.9538506Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"bf8397f8-3e6b-4603-b05b-0256157a944f"}}' headers: cache-control: - no-cache content-length: - - '300' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:08 GMT + - Sat, 16 Jan 2021 15:43:19 GMT expires: - '-1' pragma: @@ -2833,7 +3001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '124' x-powered-by: - ASP.NET status: @@ -2847,33 +3015,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --retain-until --query + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bf8397f8-3e6b-4603-b05b-0256157a944f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.9337139S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/bf8397f8-3e6b-4603-b05b-0256157a944f","name":"bf8397f8-3e6b-4603-b05b-0256157a944f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31.1813317S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T15:42:46.9538506Z","endTime":"2021-01-16T15:43:18.1351823Z","activityId":"71298e45-5811-11eb-a92f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1154' + - '968' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:11 GMT + - Sat, 16 Jan 2021 15:43:18 GMT expires: - '-1' pragma: @@ -2890,7 +3056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -2904,40 +3070,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -n + - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.1470442S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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: - - '1154' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:13 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -2947,7 +3109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -2961,40 +3123,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c --backup-management-type --workload-type --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.8899663S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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":"1413410997","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"}}]}' headers: cache-control: - no-cache content-length: - - '1154' + - '1959' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:14 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -3004,7 +3162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3018,40 +3176,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37.730492S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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":"1413410997","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"}}]}' headers: cache-control: - no-cache content-length: - - '1154' + - '1959' content-type: - application/json date: - - Fri, 18 Dec 2020 15:48:44 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -3061,69 +3215,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "IaasVMBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-02-15T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '113' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.5827573S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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/c487c29d-cf7c-4f78-8fcd-b5412d60a4c8?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1156' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 15:49:15 GMT + - Sat, 16 Jan 2021 15:43: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/c487c29d-cf7c-4f78-8fcd-b5412d60a4c8?api-version=2020-10-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: - - '146' + 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: @@ -3132,40 +3283,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c487c29d-cf7c-4f78-8fcd-b5412d60a4c8?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.5473969S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"c487c29d-cf7c-4f78-8fcd-b5412d60a4c8","name":"c487c29d-cf7c-4f78-8fcd-b5412d60a4c8","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1157' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 15:49:47 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -3175,7 +3322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '122' x-powered-by: - ASP.NET status: @@ -3189,40 +3336,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c487c29d-cf7c-4f78-8fcd-b5412d60a4c8?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.4774977S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"c487c29d-cf7c-4f78-8fcd-b5412d60a4c8","name":"c487c29d-cf7c-4f78-8fcd-b5412d60a4c8","status":"Succeeded","startTime":"2021-01-16T15:43:21.5222636Z","endTime":"2021-01-16T15:43:21.5222636Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"118feeb7-6e94-4daa-bd73-8a67708b7e17"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 15:50:17 GMT + - Sat, 16 Jan 2021 15:43: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: @@ -3232,7 +3375,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '121' x-powered-by: - ASP.NET status: @@ -3246,33 +3389,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --retain-until --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M41.3673229S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.3806577S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 15:50:48 GMT + - Sat, 16 Jan 2021 15:43:23 GMT expires: - '-1' pragma: @@ -3289,7 +3432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -3309,27 +3452,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M12.4887974S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.9783662S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1156' content-type: - application/json date: - - Fri, 18 Dec 2020 15:51:20 GMT + - Sat, 16 Jan 2021 15:43:24 GMT expires: - '-1' pragma: @@ -3346,7 +3489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '116' x-powered-by: - ASP.NET status: @@ -3366,27 +3509,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M43.3490739S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3.375574S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1155' content-type: - application/json date: - - Fri, 18 Dec 2020 15:51:50 GMT + - Sat, 16 Jan 2021 15:43:24 GMT expires: - '-1' pragma: @@ -3403,7 +3546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '115' x-powered-by: - ASP.NET status: @@ -3423,18 +3566,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M14.2167609S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33.8388815S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache @@ -3443,7 +3586,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:52:21 GMT + - Sat, 16 Jan 2021 15:43:55 GMT expires: - '-1' pragma: @@ -3460,7 +3603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '113' x-powered-by: - ASP.NET status: @@ -3480,27 +3623,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M45.0089143S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.3328996S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:52:52 GMT + - Sat, 16 Jan 2021 15:44:26 GMT expires: - '-1' pragma: @@ -3517,7 +3660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '111' x-powered-by: - ASP.NET status: @@ -3537,27 +3680,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M16.7375308S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.0794329S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:53:24 GMT + - Sat, 16 Jan 2021 15:44:56 GMT expires: - '-1' pragma: @@ -3574,7 +3717,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '109' x-powered-by: - ASP.NET status: @@ -3594,18 +3737,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M47.5790502S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.791486S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache @@ -3614,7 +3757,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:53:54 GMT + - Sat, 16 Jan 2021 15:45:27 GMT expires: - '-1' pragma: @@ -3631,7 +3774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '107' x-powered-by: - ASP.NET status: @@ -3651,27 +3794,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M18.7833362S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M36.5707981S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:54:26 GMT + - Sat, 16 Jan 2021 15:45:58 GMT expires: - '-1' pragma: @@ -3688,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '105' x-powered-by: - ASP.NET status: @@ -3708,18 +3851,18 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M49.6031317S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M7.341499S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache @@ -3728,7 +3871,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 15:54:57 GMT + - Sat, 16 Jan 2021 15:46:29 GMT expires: - '-1' pragma: @@ -3745,7 +3888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '103' x-powered-by: - ASP.NET status: @@ -3765,27 +3908,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M20.3968243S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M38.1425858S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:55:27 GMT + - Sat, 16 Jan 2021 15:46:59 GMT expires: - '-1' pragma: @@ -3802,7 +3945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '101' x-powered-by: - ASP.NET status: @@ -3822,27 +3965,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M51.0993555S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M8.8838724S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:55:58 GMT + - Sat, 16 Jan 2021 15:47:30 GMT expires: - '-1' pragma: @@ -3859,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '99' x-powered-by: - ASP.NET status: @@ -3879,27 +4022,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M21.8714593S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M39.8078177S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:56:29 GMT + - Sat, 16 Jan 2021 15:48:01 GMT expires: - '-1' pragma: @@ -3916,7 +4059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '97' x-powered-by: - ASP.NET status: @@ -3936,27 +4079,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M52.6437125S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M10.7004212S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:57:00 GMT + - Sat, 16 Jan 2021 15:48:33 GMT expires: - '-1' pragma: @@ -3973,7 +4116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '95' x-powered-by: - ASP.NET status: @@ -3993,27 +4136,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M23.3899505S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M42.4060564S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:57:30 GMT + - Sat, 16 Jan 2021 15:49:04 GMT expires: - '-1' pragma: @@ -4030,7 +4173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '93' x-powered-by: - ASP.NET status: @@ -4050,27 +4193,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M54.1967416S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M13.2783622S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:58:01 GMT + - Sat, 16 Jan 2021 15:49:35 GMT expires: - '-1' pragma: @@ -4087,7 +4230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '91' x-powered-by: - ASP.NET status: @@ -4107,27 +4250,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M26.2151855S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","duration":"PT0S","status":"Completed"},{"taskId":"Transfer data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M44.1569675S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:58:33 GMT + - Sat, 16 Jan 2021 15:50:06 GMT expires: - '-1' pragma: @@ -4144,7 +4287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '89' x-powered-by: - ASP.NET status: @@ -4164,27 +4307,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M56.9881226S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M14.9159957S","actionsInfo":[1],"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":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 15:59:04 GMT + - Sat, 16 Jan 2021 15:50:36 GMT expires: - '-1' pragma: @@ -4201,7 +4344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '87' x-powered-by: - ASP.NET status: @@ -4221,27 +4364,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M27.7780199S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M45.7064926S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 15:59:35 GMT + - Sat, 16 Jan 2021 15:51:07 GMT expires: - '-1' pragma: @@ -4258,7 +4401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '85' x-powered-by: - ASP.NET status: @@ -4278,27 +4421,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M58.6038094S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M16.4830901S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:00:05 GMT + - Sat, 16 Jan 2021 15:51:38 GMT expires: - '-1' pragma: @@ -4315,7 +4458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '83' x-powered-by: - ASP.NET status: @@ -4335,27 +4478,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M29.5434214S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M47.2897839S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:00:37 GMT + - Sat, 16 Jan 2021 15:52:08 GMT expires: - '-1' pragma: @@ -4372,7 +4515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '81' x-powered-by: - ASP.NET status: @@ -4392,27 +4535,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M0.3613765S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M18.2390574S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:01:07 GMT + - Sat, 16 Jan 2021 15:52:39 GMT expires: - '-1' pragma: @@ -4429,7 +4572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '79' x-powered-by: - ASP.NET status: @@ -4449,27 +4592,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M31.1426171S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M49.3137623S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:01:38 GMT + - Sat, 16 Jan 2021 15:53:11 GMT expires: - '-1' pragma: @@ -4486,7 +4629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '77' x-powered-by: - ASP.NET status: @@ -4506,27 +4649,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M2.0059774S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M20.0248426S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"NotStarted"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:02:09 GMT + - Sat, 16 Jan 2021 15:53:41 GMT expires: - '-1' pragma: @@ -4543,7 +4686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '75' x-powered-by: - ASP.NET status: @@ -4563,27 +4706,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M32.7926706S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M50.4775131S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:02:40 GMT + - Sat, 16 Jan 2021 15:54:11 GMT expires: - '-1' pragma: @@ -4600,7 +4743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '74' x-powered-by: - ASP.NET status: @@ -4620,27 +4763,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M3.6514548S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M21.3967687S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:03:10 GMT + - Sat, 16 Jan 2021 15:54:42 GMT expires: - '-1' pragma: @@ -4657,7 +4800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '72' x-powered-by: - ASP.NET status: @@ -4677,27 +4820,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M35.6120071S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M52.2838229S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:03:42 GMT + - Sat, 16 Jan 2021 15:55:14 GMT expires: - '-1' pragma: @@ -4714,7 +4857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '70' x-powered-by: - ASP.NET status: @@ -4734,27 +4877,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M6.3876737S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M23.0836185S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:04:13 GMT + - Sat, 16 Jan 2021 15:55:44 GMT expires: - '-1' pragma: @@ -4771,7 +4914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '68' x-powered-by: - ASP.NET status: @@ -4791,27 +4934,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M37.2033132S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M53.9769774S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:04:44 GMT + - Sat, 16 Jan 2021 15:56:15 GMT expires: - '-1' pragma: @@ -4828,7 +4971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '66' x-powered-by: - ASP.NET status: @@ -4848,27 +4991,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M7.9523637S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M24.7130657S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:05:15 GMT + - Sat, 16 Jan 2021 15:56:45 GMT expires: - '-1' pragma: @@ -4885,7 +5028,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '63' x-powered-by: - ASP.NET status: @@ -4905,27 +5048,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M38.7025223S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M55.412793S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:05:46 GMT + - Sat, 16 Jan 2021 15:57:17 GMT expires: - '-1' pragma: @@ -4942,7 +5085,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '61' x-powered-by: - ASP.NET status: @@ -4962,27 +5105,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M9.4945473S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M26.2351066S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:06:16 GMT + - Sat, 16 Jan 2021 15:57:47 GMT expires: - '-1' pragma: @@ -4999,7 +5142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '59' x-powered-by: - ASP.NET status: @@ -5019,27 +5162,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M40.2261567S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M57.0077553S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:06:47 GMT + - Sat, 16 Jan 2021 15:58:18 GMT expires: - '-1' pragma: @@ -5056,7 +5199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '57' x-powered-by: - ASP.NET status: @@ -5076,27 +5219,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M10.9097918S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M27.8374022S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:07:18 GMT + - Sat, 16 Jan 2021 15:58:49 GMT expires: - '-1' pragma: @@ -5113,7 +5256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '55' x-powered-by: - ASP.NET status: @@ -5133,27 +5276,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M41.6147089S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M58.6231221S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:07:48 GMT + - Sat, 16 Jan 2021 15:59:20 GMT expires: - '-1' pragma: @@ -5170,7 +5313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '53' x-powered-by: - ASP.NET status: @@ -5190,27 +5333,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M12.6172719S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M29.463516S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:08:20 GMT + - Sat, 16 Jan 2021 15:59:51 GMT expires: - '-1' pragma: @@ -5227,7 +5370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '52' x-powered-by: - ASP.NET status: @@ -5247,27 +5390,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M43.3552842S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M0.2666285S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:08:50 GMT + - Sat, 16 Jan 2021 16:00:22 GMT expires: - '-1' pragma: @@ -5284,7 +5427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '50' x-powered-by: - ASP.NET status: @@ -5304,27 +5447,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M14.2820678S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M31.1548799S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:09:21 GMT + - Sat, 16 Jan 2021 16:00:52 GMT expires: - '-1' pragma: @@ -5341,7 +5484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '48' x-powered-by: - ASP.NET status: @@ -5361,27 +5504,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M45.066132S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M2.0985545S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:09:52 GMT + - Sat, 16 Jan 2021 16:01:24 GMT expires: - '-1' pragma: @@ -5398,7 +5541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '45' x-powered-by: - ASP.NET status: @@ -5418,27 +5561,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M15.9165897S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M32.9979493S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:10:23 GMT + - Sat, 16 Jan 2021 16:01:54 GMT expires: - '-1' pragma: @@ -5455,7 +5598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '43' x-powered-by: - ASP.NET status: @@ -5475,27 +5618,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M46.8487638S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M3.7136108S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:10:54 GMT + - Sat, 16 Jan 2021 16:02:25 GMT expires: - '-1' pragma: @@ -5512,7 +5655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '41' x-powered-by: - ASP.NET status: @@ -5532,27 +5675,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M17.64722S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M34.6525858S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1155' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:11:24 GMT + - Sat, 16 Jan 2021 16:02:56 GMT expires: - '-1' pragma: @@ -5569,7 +5712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '39' x-powered-by: - ASP.NET status: @@ -5589,27 +5732,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M48.4276727S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M5.5280365S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:11:56 GMT + - Sat, 16 Jan 2021 16:03:27 GMT expires: - '-1' pragma: @@ -5626,7 +5769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '37' x-powered-by: - ASP.NET status: @@ -5646,27 +5789,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M19.2189442S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M36.4465195S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:12:26 GMT + - Sat, 16 Jan 2021 16:03:57 GMT expires: - '-1' pragma: @@ -5683,7 +5826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '35' x-powered-by: - ASP.NET status: @@ -5703,27 +5846,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M49.9995956S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M7.1805677S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:12:57 GMT + - Sat, 16 Jan 2021 16:04:28 GMT expires: - '-1' pragma: @@ -5740,7 +5883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '33' x-powered-by: - ASP.NET status: @@ -5760,27 +5903,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M22.0323806S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M37.8860533S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:13:29 GMT + - Sat, 16 Jan 2021 16:04:59 GMT expires: - '-1' pragma: @@ -5797,7 +5940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '31' x-powered-by: - ASP.NET status: @@ -5817,27 +5960,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M52.8277057S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M8.6063273S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:13:59 GMT + - Sat, 16 Jan 2021 16:05:29 GMT expires: - '-1' pragma: @@ -5854,7 +5997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '29' x-powered-by: - ASP.NET status: @@ -5874,27 +6017,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M23.7159588S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M39.4769756S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:14:31 GMT + - Sat, 16 Jan 2021 16:06:00 GMT expires: - '-1' pragma: @@ -5911,7 +6054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '27' x-powered-by: - ASP.NET status: @@ -5931,27 +6074,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M54.5503162S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M10.2668585S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:15:02 GMT + - Sat, 16 Jan 2021 16:06:32 GMT expires: - '-1' pragma: @@ -5968,7 +6111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '25' x-powered-by: - ASP.NET status: @@ -5988,27 +6131,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M25.3663664S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M41.3858718S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:15:32 GMT + - Sat, 16 Jan 2021 16:07:02 GMT expires: - '-1' pragma: @@ -6025,7 +6168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '23' x-powered-by: - ASP.NET status: @@ -6045,27 +6188,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M56.178965S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M12.3814432S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:16:03 GMT + - Sat, 16 Jan 2021 16:07:34 GMT expires: - '-1' pragma: @@ -6082,7 +6225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '21' x-powered-by: - ASP.NET status: @@ -6102,27 +6245,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M27.1231638S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M43.4165037S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:16:34 GMT + - Sat, 16 Jan 2021 16:08:04 GMT expires: - '-1' pragma: @@ -6139,7 +6282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '19' x-powered-by: - ASP.NET status: @@ -6159,27 +6302,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M58.0263368S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M14.2095934S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:17:05 GMT + - Sat, 16 Jan 2021 16:08:35 GMT expires: - '-1' pragma: @@ -6196,7 +6339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '17' x-powered-by: - ASP.NET status: @@ -6216,27 +6359,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M28.8846486S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M45.0072796S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:17:36 GMT + - Sat, 16 Jan 2021 16:09:06 GMT expires: - '-1' pragma: @@ -6253,7 +6396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '15' x-powered-by: - ASP.NET status: @@ -6273,27 +6416,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M59.7574891S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M15.7786774S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:18:07 GMT + - Sat, 16 Jan 2021 16:09:37 GMT expires: - '-1' pragma: @@ -6310,7 +6453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '13' x-powered-by: - ASP.NET status: @@ -6330,27 +6473,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M31.7796107S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M46.7542126S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:18:38 GMT + - Sat, 16 Jan 2021 16:10:08 GMT expires: - '-1' pragma: @@ -6367,7 +6510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '11' x-powered-by: - ASP.NET status: @@ -6387,27 +6530,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M4.0781252S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M17.5735471S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:19:11 GMT + - Sat, 16 Jan 2021 16:10:39 GMT expires: - '-1' pragma: @@ -6424,7 +6567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '9' x-powered-by: - ASP.NET status: @@ -6444,27 +6587,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M34.8762391S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M48.4095052S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:19:42 GMT + - Sat, 16 Jan 2021 16:11:10 GMT expires: - '-1' pragma: @@ -6481,7 +6624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '7' x-powered-by: - ASP.NET status: @@ -6501,27 +6644,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M5.8613605S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M19.1859344S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:20:13 GMT + - Sat, 16 Jan 2021 16:11:41 GMT expires: - '-1' pragma: @@ -6538,7 +6681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '5' x-powered-by: - ASP.NET status: @@ -6558,27 +6701,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M36.8028464S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M50.6901527S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:20:44 GMT + - Sat, 16 Jan 2021 16:12:12 GMT expires: - '-1' pragma: @@ -6595,7 +6738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '3' x-powered-by: - ASP.NET status: @@ -6615,27 +6758,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M7.661288S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M21.4161147S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1155' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:21:15 GMT + - Sat, 16 Jan 2021 16:12:43 GMT expires: - '-1' pragma: @@ -6652,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '1' x-powered-by: - ASP.NET status: @@ -6672,27 +6815,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M38.5464737S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M52.2262523S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:21:45 GMT + - Sat, 16 Jan 2021 16:13:13 GMT expires: - '-1' pragma: @@ -6709,7 +6852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '-1' x-powered-by: - ASP.NET status: @@ -6729,27 +6872,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M9.4076897S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M47.6630831S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:22:16 GMT + - Sat, 16 Jan 2021 16:19:09 GMT expires: - '-1' pragma: @@ -6766,7 +6909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '147' x-powered-by: - ASP.NET status: @@ -6786,27 +6929,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M40.2827945S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M18.1758737S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:22:47 GMT + - Sat, 16 Jan 2021 16:19:39 GMT expires: - '-1' pragma: @@ -6823,7 +6966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '146' x-powered-by: - ASP.NET status: @@ -6843,27 +6986,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M11.2046892S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M48.7409852S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:23:18 GMT + - Sat, 16 Jan 2021 16:20:10 GMT expires: - '-1' pragma: @@ -6880,7 +7023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '145' x-powered-by: - ASP.NET status: @@ -6900,27 +7043,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M43.1248314S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M19.3405478S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:23:50 GMT + - Sat, 16 Jan 2021 16:20:41 GMT expires: - '-1' pragma: @@ -6937,7 +7080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '144' x-powered-by: - ASP.NET status: @@ -6957,27 +7100,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M13.8632521S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M49.8702128S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:24:21 GMT + - Sat, 16 Jan 2021 16:21:11 GMT expires: - '-1' pragma: @@ -6994,7 +7137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '143' x-powered-by: - ASP.NET status: @@ -7014,27 +7157,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M44.6358283S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M20.3502654S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:24:52 GMT + - Sat, 16 Jan 2021 16:21:42 GMT expires: - '-1' pragma: @@ -7051,7 +7194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '142' x-powered-by: - ASP.NET status: @@ -7071,27 +7214,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M15.4031716S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M50.9123315S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:25:22 GMT + - Sat, 16 Jan 2021 16:22:12 GMT expires: - '-1' pragma: @@ -7108,7 +7251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '141' x-powered-by: - ASP.NET status: @@ -7128,27 +7271,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M46.2562894S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M21.4559104S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:25:53 GMT + - Sat, 16 Jan 2021 16:22:43 GMT expires: - '-1' pragma: @@ -7165,7 +7308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '140' x-powered-by: - ASP.NET status: @@ -7185,27 +7328,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M17.0201377S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M51.9402038S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:26:24 GMT + - Sat, 16 Jan 2021 16:23:13 GMT expires: - '-1' pragma: @@ -7222,7 +7365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '139' x-powered-by: - ASP.NET status: @@ -7242,27 +7385,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M47.889903S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M22.5517206S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:26:54 GMT + - Sat, 16 Jan 2021 16:23:44 GMT expires: - '-1' pragma: @@ -7279,7 +7422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '138' x-powered-by: - ASP.NET status: @@ -7299,27 +7442,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M18.6916707S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M54.7318072S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:27:26 GMT + - Sat, 16 Jan 2021 16:24:15 GMT expires: - '-1' pragma: @@ -7336,7 +7479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '137' x-powered-by: - ASP.NET status: @@ -7356,27 +7499,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M49.4867398S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M25.2221482S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:27:56 GMT + - Sat, 16 Jan 2021 16:24:47 GMT expires: - '-1' pragma: @@ -7393,7 +7536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '136' x-powered-by: - ASP.NET status: @@ -7413,27 +7556,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M20.2703711S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M55.7841778S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:28:27 GMT + - Sat, 16 Jan 2021 16:25:16 GMT expires: - '-1' pragma: @@ -7450,7 +7593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '135' x-powered-by: - ASP.NET status: @@ -7470,27 +7613,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M52.1572947S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M26.2359815S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:28:59 GMT + - Sat, 16 Jan 2021 16:25:47 GMT expires: - '-1' pragma: @@ -7507,7 +7650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '134' x-powered-by: - ASP.NET status: @@ -7527,27 +7670,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M22.9685611S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M56.8271035S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:29:30 GMT + - Sat, 16 Jan 2021 16:26:18 GMT expires: - '-1' pragma: @@ -7564,7 +7707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '133' x-powered-by: - ASP.NET status: @@ -7584,27 +7727,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M53.7445842S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M27.3409974S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:30:00 GMT + - Sat, 16 Jan 2021 16:26:49 GMT expires: - '-1' pragma: @@ -7621,7 +7764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '132' x-powered-by: - ASP.NET status: @@ -7641,27 +7784,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M24.4650974S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M57.9622155S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:30:32 GMT + - Sat, 16 Jan 2021 16:27:19 GMT expires: - '-1' pragma: @@ -7678,7 +7821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '131' x-powered-by: - ASP.NET status: @@ -7698,27 +7841,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M55.3407673S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M28.4724828S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:31:02 GMT + - Sat, 16 Jan 2021 16:27:49 GMT expires: - '-1' pragma: @@ -7735,7 +7878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '130' x-powered-by: - ASP.NET status: @@ -7755,27 +7898,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M26.1316507S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M59.0083204S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:31:34 GMT + - Sat, 16 Jan 2021 16:28:20 GMT expires: - '-1' pragma: @@ -7792,7 +7935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '129' x-powered-by: - ASP.NET status: @@ -7812,27 +7955,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M56.9446911S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M29.6359043S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:32:04 GMT + - Sat, 16 Jan 2021 16:28:50 GMT expires: - '-1' pragma: @@ -7849,7 +7992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '128' x-powered-by: - ASP.NET status: @@ -7869,27 +8012,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M27.7168947S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M0.4643211S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:32:34 GMT + - Sat, 16 Jan 2021 16:29:22 GMT expires: - '-1' pragma: @@ -7906,7 +8049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '127' x-powered-by: - ASP.NET status: @@ -7926,27 +8069,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M58.7392156S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M31.0188686S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:33:06 GMT + - Sat, 16 Jan 2021 16:29:52 GMT expires: - '-1' pragma: @@ -7963,7 +8106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '126' x-powered-by: - ASP.NET status: @@ -7983,27 +8126,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M29.5756043S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M1.5291474S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:33:36 GMT + - Sat, 16 Jan 2021 16:30:23 GMT expires: - '-1' pragma: @@ -8020,7 +8163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '125' x-powered-by: - ASP.NET status: @@ -8040,27 +8183,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M1.564627S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M31.9817102S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1155' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:34:09 GMT + - Sat, 16 Jan 2021 16:30:53 GMT expires: - '-1' pragma: @@ -8077,7 +8220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '124' x-powered-by: - ASP.NET status: @@ -8097,27 +8240,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M33.6137528S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M2.5010793S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:34:41 GMT + - Sat, 16 Jan 2021 16:31:23 GMT expires: - '-1' pragma: @@ -8134,7 +8277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '123' x-powered-by: - ASP.NET status: @@ -8154,27 +8297,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M4.4451017S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M33.0344933S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:35:11 GMT + - Sat, 16 Jan 2021 16:31:54 GMT expires: - '-1' pragma: @@ -8191,7 +8334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '122' x-powered-by: - ASP.NET status: @@ -8211,27 +8354,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M35.8682068S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M3.6041361S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:35:43 GMT + - Sat, 16 Jan 2021 16:32:25 GMT expires: - '-1' pragma: @@ -8248,7 +8391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' + - '121' x-powered-by: - ASP.NET status: @@ -8268,27 +8411,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M6.6415225S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M34.1167231S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:36:13 GMT + - Sat, 16 Jan 2021 16:32:55 GMT expires: - '-1' pragma: @@ -8305,7 +8448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '120' x-powered-by: - ASP.NET status: @@ -8325,27 +8468,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M37.4993761S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M4.6765445S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:36:45 GMT + - Sat, 16 Jan 2021 16:33:25 GMT expires: - '-1' pragma: @@ -8362,7 +8505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '119' x-powered-by: - ASP.NET status: @@ -8382,27 +8525,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M8.2448657S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M35.2598783S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:37:16 GMT + - Sat, 16 Jan 2021 16:33:56 GMT expires: - '-1' pragma: @@ -8419,7 +8562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '118' x-powered-by: - ASP.NET status: @@ -8439,27 +8582,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M39.1248535S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M6.1574209S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:37:46 GMT + - Sat, 16 Jan 2021 16:34:27 GMT expires: - '-1' pragma: @@ -8476,7 +8619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '117' x-powered-by: - ASP.NET status: @@ -8496,27 +8639,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M10.0408121S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M36.6426772S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:38:16 GMT + - Sat, 16 Jan 2021 16:34:57 GMT expires: - '-1' pragma: @@ -8533,7 +8676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '116' x-powered-by: - ASP.NET status: @@ -8553,27 +8696,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M40.871903S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M7.103734S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1157' content-type: - application/json date: - - Fri, 18 Dec 2020 16:38:48 GMT + - Sat, 16 Jan 2021 16:35:28 GMT expires: - '-1' pragma: @@ -8590,7 +8733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + - '117' x-powered-by: - ASP.NET status: @@ -8610,27 +8753,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M11.8205537S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M37.5149194S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:39:19 GMT + - Sat, 16 Jan 2021 16:35:59 GMT expires: - '-1' pragma: @@ -8647,7 +8790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '116' x-powered-by: - ASP.NET status: @@ -8667,27 +8810,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M43.7906805S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M7.9894895S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:39:51 GMT + - Sat, 16 Jan 2021 16:36:29 GMT expires: - '-1' pragma: @@ -8704,7 +8847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '115' x-powered-by: - ASP.NET status: @@ -8724,27 +8867,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M14.6218071S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M38.7191877S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:40:22 GMT + - Sat, 16 Jan 2021 16:37:00 GMT expires: - '-1' pragma: @@ -8761,7 +8904,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '114' x-powered-by: - ASP.NET status: @@ -8781,27 +8924,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M45.9258173S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M9.1672689S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:40:53 GMT + - Sat, 16 Jan 2021 16:37:30 GMT expires: - '-1' pragma: @@ -8818,7 +8961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '113' x-powered-by: - ASP.NET status: @@ -8838,27 +8981,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M16.9088121S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M39.6376372S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:41:23 GMT + - Sat, 16 Jan 2021 16:38:01 GMT expires: - '-1' pragma: @@ -8875,7 +9018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '112' x-powered-by: - ASP.NET status: @@ -8895,27 +9038,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M47.6610722S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M10.181378S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:41:55 GMT + - Sat, 16 Jan 2021 16:38:32 GMT expires: - '-1' pragma: @@ -8932,7 +9075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '111' x-powered-by: - ASP.NET status: @@ -8952,27 +9095,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M18.5718881S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M40.8412668S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:42:25 GMT + - Sat, 16 Jan 2021 16:39:02 GMT expires: - '-1' pragma: @@ -8989,7 +9132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '110' x-powered-by: - ASP.NET status: @@ -9009,27 +9152,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M49.3390128S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M11.5992178S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:42:57 GMT + - Sat, 16 Jan 2021 16:39:32 GMT expires: - '-1' pragma: @@ -9046,7 +9189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '109' x-powered-by: - ASP.NET status: @@ -9066,27 +9209,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M20.232217S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M42.0902524S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:43:27 GMT + - Sat, 16 Jan 2021 16:40:04 GMT expires: - '-1' pragma: @@ -9103,7 +9246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '108' x-powered-by: - ASP.NET status: @@ -9123,27 +9266,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M51.0354543S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M12.5513501S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:43:58 GMT + - Sat, 16 Jan 2021 16:40:34 GMT expires: - '-1' pragma: @@ -9160,7 +9303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '107' x-powered-by: - ASP.NET status: @@ -9180,27 +9323,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M21.9162853S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M43.1401033S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:44:29 GMT + - Sat, 16 Jan 2021 16:41:04 GMT expires: - '-1' pragma: @@ -9217,7 +9360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '106' x-powered-by: - ASP.NET status: @@ -9237,27 +9380,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M53.5933819S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M13.6886735S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:45:01 GMT + - Sat, 16 Jan 2021 16:41:35 GMT expires: - '-1' pragma: @@ -9274,7 +9417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '105' x-powered-by: - ASP.NET status: @@ -9294,27 +9437,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M24.3744791S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M44.1894806S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:45:31 GMT + - Sat, 16 Jan 2021 16:42:05 GMT expires: - '-1' pragma: @@ -9331,7 +9474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '104' x-powered-by: - ASP.NET status: @@ -9351,27 +9494,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M55.3109307S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M14.8459475S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:46:03 GMT + - Sat, 16 Jan 2021 16:42:36 GMT expires: - '-1' pragma: @@ -9388,7 +9531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '103' x-powered-by: - ASP.NET status: @@ -9408,27 +9551,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M26.1547806S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M45.6446881S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1159' content-type: - application/json date: - - Fri, 18 Dec 2020 16:46:33 GMT + - Sat, 16 Jan 2021 16:43:07 GMT expires: - '-1' pragma: @@ -9445,7 +9588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '102' x-powered-by: - ASP.NET status: @@ -9465,27 +9608,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M57.0850582S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16.6464017S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:47:04 GMT + - Sat, 16 Jan 2021 16:43:38 GMT expires: - '-1' pragma: @@ -9502,7 +9645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '101' x-powered-by: - ASP.NET status: @@ -9522,27 +9665,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M27.9596169S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H47.5548617S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2021-01-16T15:43:21.5222636Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1158' content-type: - application/json date: - - Fri, 18 Dec 2020 16:47:35 GMT + - Sat, 16 Jan 2021 16:44:09 GMT expires: - '-1' pragma: @@ -9559,7 +9702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '100' x-powered-by: - ASP.NET status: @@ -9579,27 +9722,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M58.8054239S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Take + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/118feeb7-6e94-4daa-bd73-8a67708b7e17","name":"118feeb7-6e94-4daa-bd73-8a67708b7e17","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M13.4072316S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + to vault","duration":"PT0S","status":"Completed"}],"propertyBag":{"VM Name":"clitest-vm000003","Recovery + Point Expiry Time in UTC":"2/15/2021 12:00:00 AM","Backup Size":"21442 MB"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2021-01-16T15:43:21.5222636Z","endTime":"2021-01-16T16:44:34.9294952Z","activityId":"8f492af5-5811-11eb-b447-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1224' content-type: - application/json date: - - Fri, 18 Dec 2020 16:48:05 GMT + - Sat, 16 Jan 2021 16:44:40 GMT expires: - '-1' pragma: @@ -9616,7 +9759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '99' x-powered-by: - ASP.NET status: @@ -9630,40 +9773,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H29.5926484S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '1156' + - '2334' content-type: - application/json date: - - Fri, 18 Dec 2020 16:48:37 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9673,7 +9813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -9687,40 +9827,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M0.4820252S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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/66830722116223","name":"66830722116223","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T15:43:25.0545384Z","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"}}]}' headers: cache-control: - no-cache content-length: - - '1157' + - '1177' content-type: - application/json date: - - Fri, 18 Dec 2020 16:49:07 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9730,7 +9866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '149' x-powered-by: - ASP.NET status: @@ -9744,40 +9880,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M31.4149745S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '2334' content-type: - application/json date: - - Fri, 18 Dec 2020 16:49:39 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9787,7 +9920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '148' x-powered-by: - ASP.NET status: @@ -9801,40 +9934,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M3.4443285S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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: - - '1157' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 16:50:10 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9844,7 +9973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '148' x-powered-by: - ASP.NET status: @@ -9858,40 +9987,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M34.2060973S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '1158' + - '2334' content-type: - application/json date: - - Fri, 18 Dec 2020 16:50:41 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9901,7 +10027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '149' x-powered-by: - ASP.NET status: @@ -9915,40 +10041,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M5.7118428S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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: - - '1157' + - '1220' content-type: - application/json date: - - Fri, 18 Dec 2020 16:51:13 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -9958,7 +10080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '149' x-powered-by: - ASP.NET status: @@ -9972,40 +10094,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + 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/66830722116223?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H3M36.663703S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"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/66830722116223","name":"66830722116223","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2021-01-16T15:43:25.0545384Z","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"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '1165' content-type: - application/json date: - - Fri, 18 Dec 2020 16:51:43 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -10015,7 +10133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '149' x-powered-by: - ASP.NET status: @@ -10029,40 +10147,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + 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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M7.5343448S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-16T15%3A39%3A59.899795Z''\"","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: - - '1157' + - '538' content-type: - application/json date: - - Fri, 18 Dec 2020 16:52:15 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -10071,10 +10185,6 @@ interactions: - 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 @@ -10086,55 +10196,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H4M38.3173486S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '312' content-type: - - application/json + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 16:52:45 GMT + - Sat, 16 Jan 2021 16:45: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: - - '28' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -10143,40 +10243,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M9.1684881S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-01-16T15:42:10.1155586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-16T15:42:10.0373583Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1157' + - '974' content-type: - application/json date: - - Fri, 18 Dec 2020 16:53:16 GMT + - Sat, 16 Jan 2021 16:45:18 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -10185,70 +10281,66 @@ interactions: - 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 + body: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": + "66830722116223", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", + "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", + "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": + false}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive + Content-Length: + - '681' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + 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/recoveryPoints/66830722116223/restore?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5M40.0706214S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + 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/5cd6fe99-4c2f-4b2a-b8d6-e631c60dd356?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1158' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 16:53:47 GMT + - Sat, 16 Jan 2021 16:45: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/5cd6fe99-4c2f-4b2a-b8d6-e631c60dd356?api-version=2020-10-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: - - '26' + 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: @@ -10257,40 +10349,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5cd6fe99-4c2f-4b2a-b8d6-e631c60dd356?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M10.9263842S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"5cd6fe99-4c2f-4b2a-b8d6-e631c60dd356","name":"5cd6fe99-4c2f-4b2a-b8d6-e631c60dd356","status":"Succeeded","startTime":"2021-01-16T16:45:19.9541968Z","endTime":"2021-01-16T16:45:19.9541968Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"93d1819a-f505-4392-ab1b-d4776e37b511"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 16:54:18 GMT + - Sat, 16 Jan 2021 16:45: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: @@ -10300,7 +10388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '148' x-powered-by: - ASP.NET status: @@ -10314,33 +10402,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-disks Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H6M41.7599021S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1.9559818S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1198' content-type: - application/json date: - - Fri, 18 Dec 2020 16:54:49 GMT + - Sat, 16 Jan 2021 16:45:22 GMT expires: - '-1' pragma: @@ -10357,7 +10445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '148' x-powered-by: - ASP.NET status: @@ -10377,27 +10465,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M13.8574067S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.4685219S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1198' content-type: - application/json date: - - Fri, 18 Dec 2020 16:55:20 GMT + - Sat, 16 Jan 2021 16:45:22 GMT expires: - '-1' pragma: @@ -10414,7 +10502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '129' x-powered-by: - ASP.NET status: @@ -10434,27 +10522,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H7M44.8816741S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2.9534724S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1198' content-type: - application/json date: - - Fri, 18 Dec 2020 16:55:52 GMT + - Sat, 16 Jan 2021 16:45:23 GMT expires: - '-1' pragma: @@ -10471,7 +10559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '128' x-powered-by: - ASP.NET status: @@ -10491,27 +10579,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M15.8897191S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34.1219001S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1199' content-type: - application/json date: - - Fri, 18 Dec 2020 16:56:22 GMT + - Sat, 16 Jan 2021 16:45:54 GMT expires: - '-1' pragma: @@ -10528,7 +10616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '127' x-powered-by: - ASP.NET status: @@ -10548,27 +10636,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H8M46.7361079S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M4.5453751S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 16:56:54 GMT + - Sat, 16 Jan 2021 16:46:24 GMT expires: - '-1' pragma: @@ -10585,7 +10673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '126' x-powered-by: - ASP.NET status: @@ -10605,27 +10693,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M17.5008251S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M35.0189203S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 16:57:24 GMT + - Sat, 16 Jan 2021 16:46:55 GMT expires: - '-1' pragma: @@ -10642,7 +10730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '125' x-powered-by: - ASP.NET status: @@ -10662,27 +10750,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H9M48.4208214S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M5.4901993S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 16:57:56 GMT + - Sat, 16 Jan 2021 16:47:26 GMT expires: - '-1' pragma: @@ -10699,7 +10787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '124' x-powered-by: - ASP.NET status: @@ -10719,27 +10807,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M19.3030122S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M35.9199375S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 16:58:26 GMT + - Sat, 16 Jan 2021 16:47:56 GMT expires: - '-1' pragma: @@ -10756,7 +10844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '123' x-powered-by: - ASP.NET status: @@ -10776,27 +10864,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H10M50.0615787S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M6.3769594S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 16:58:57 GMT + - Sat, 16 Jan 2021 16:48:26 GMT expires: - '-1' pragma: @@ -10813,7 +10901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '122' x-powered-by: - ASP.NET status: @@ -10833,27 +10921,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M20.8725824S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M36.8136302S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 16:59:28 GMT + - Sat, 16 Jan 2021 16:48:57 GMT expires: - '-1' pragma: @@ -10870,7 +10958,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '121' x-powered-by: - ASP.NET status: @@ -10890,27 +10978,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H11M51.6916254S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M7.2555164S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 16:59:58 GMT + - Sat, 16 Jan 2021 16:49:27 GMT expires: - '-1' pragma: @@ -10927,7 +11015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '120' x-powered-by: - ASP.NET status: @@ -10947,27 +11035,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M23.8023769S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M37.7737129S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 17:00:31 GMT + - Sat, 16 Jan 2021 16:49:58 GMT expires: - '-1' pragma: @@ -10984,7 +11072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '119' x-powered-by: - ASP.NET status: @@ -11004,27 +11092,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H12M54.5990476S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M8.5133183S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 17:01:02 GMT + - Sat, 16 Jan 2021 16:50:28 GMT expires: - '-1' pragma: @@ -11041,7 +11129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '118' x-powered-by: - ASP.NET status: @@ -11061,27 +11149,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M25.3345629S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M38.9346498S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 17:01:32 GMT + - Sat, 16 Jan 2021 16:50:58 GMT expires: - '-1' pragma: @@ -11098,7 +11186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '117' x-powered-by: - ASP.NET status: @@ -11118,27 +11206,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H13M56.2341156S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M9.3961996S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1200' content-type: - application/json date: - - Fri, 18 Dec 2020 17:02:03 GMT + - Sat, 16 Jan 2021 16:51:29 GMT expires: - '-1' pragma: @@ -11155,7 +11243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '116' x-powered-by: - ASP.NET status: @@ -11175,27 +11263,27 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H14M31.2357829S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M39.8500423S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job + Type":"Recover disks","Target VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1201' content-type: - application/json date: - - Fri, 18 Dec 2020 17:02:38 GMT + - Sat, 16 Jan 2021 16:52:00 GMT expires: - '-1' pragma: @@ -11212,7 +11300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '115' x-powered-by: - ASP.NET status: @@ -11232,27 +11320,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M2.0544543S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M10.3195402S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:03:09 GMT + - Sat, 16 Jan 2021 16:52:30 GMT expires: - '-1' pragma: @@ -11269,7 +11358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '114' x-powered-by: - ASP.NET status: @@ -11289,27 +11378,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H15M32.9866194S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M40.8668378S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:03:40 GMT + - Sat, 16 Jan 2021 16:53:01 GMT expires: - '-1' pragma: @@ -11326,7 +11416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '113' x-powered-by: - ASP.NET status: @@ -11346,27 +11436,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M4.9794943S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M11.3009938S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:04:12 GMT + - Sat, 16 Jan 2021 16:53:31 GMT expires: - '-1' pragma: @@ -11383,7 +11474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '112' x-powered-by: - ASP.NET status: @@ -11403,27 +11494,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H16M35.9385164S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M41.7529311S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:04:43 GMT + - Sat, 16 Jan 2021 16:54:02 GMT expires: - '-1' pragma: @@ -11440,7 +11532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '111' x-powered-by: - ASP.NET status: @@ -11460,27 +11552,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M6.7776525S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M12.1554706S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:05:13 GMT + - Sat, 16 Jan 2021 16:54:32 GMT expires: - '-1' pragma: @@ -11497,7 +11590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '110' x-powered-by: - ASP.NET status: @@ -11517,27 +11610,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H17M37.6882915S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M42.6180749S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:05:44 GMT + - Sat, 16 Jan 2021 16:55:02 GMT expires: - '-1' pragma: @@ -11554,7 +11648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '109' x-powered-by: - ASP.NET status: @@ -11574,27 +11668,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M8.5405562S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M13.0916952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:06:16 GMT + - Sat, 16 Jan 2021 16:55:32 GMT expires: - '-1' pragma: @@ -11611,7 +11706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '108' x-powered-by: - ASP.NET status: @@ -11631,27 +11726,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H18M39.4396379S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M43.926177S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:06:46 GMT + - Sat, 16 Jan 2021 16:56:04 GMT expires: - '-1' pragma: @@ -11668,7 +11764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '107' x-powered-by: - ASP.NET status: @@ -11688,27 +11784,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M10.3051167S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M14.4708523S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:07:17 GMT + - Sat, 16 Jan 2021 16:56:34 GMT expires: - '-1' pragma: @@ -11725,7 +11822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '106' x-powered-by: - ASP.NET status: @@ -11745,27 +11842,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H19M41.120124S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M44.8990472S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"512 + MBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":0.0,"estimatedRemainingDuration":"P1DT5H41M38.249492S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1158' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:07:48 GMT + - Sat, 16 Jan 2021 16:57:04 GMT expires: - '-1' pragma: @@ -11782,7 +11880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '105' x-powered-by: - ASP.NET status: @@ -11802,27 +11900,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M11.9996634S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M15.4256853S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:08:19 GMT + - Sat, 16 Jan 2021 16:57:35 GMT expires: - '-1' pragma: @@ -11839,7 +11938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '104' x-powered-by: - ASP.NET status: @@ -11859,27 +11958,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H20M42.8093318S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM"},"internalPropertyBag":{"IsInstantRpJob":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"InProgress","startTime":"2020-12-18T15:48:07.38607Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M45.8894409S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1159' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:08:50 GMT + - Sat, 16 Jan 2021 16:58:05 GMT expires: - '-1' pragma: @@ -11896,7 +11996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '103' x-powered-by: - ASP.NET status: @@ -11916,27 +12016,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c0445d56-37fb-4a93-a540-88b6126dcdb4?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c0445d56-37fb-4a93-a540-88b6126dcdb4","name":"c0445d56-37fb-4a93-a540-88b6126dcdb4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H21M13.1499198S","actionsInfo":[1],"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":"1/17/2021 12:00:00 AM","Backup Size":"21438 MB"},"internalPropertyBag":{"IsInstantRpJob":"True","AdHoc":"AdHoc"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Backup","status":"Completed","startTime":"2020-12-18T15:48:07.6518951Z","endTime":"2020-12-18T17:09:20.8018149Z","activityId":"697191a3-4148-11eb-b86c-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M16.3778199S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1241' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:09:20 GMT + - Sat, 16 Jan 2021 16:58:36 GMT expires: - '-1' pragma: @@ -11953,7 +12054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '102' x-powered-by: - ASP.NET status: @@ -11967,37 +12068,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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","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":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"2020-12-18T15:48:10.9264983Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M46.8190814S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:09:52 GMT + - Sat, 16 Jan 2021 16:59: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: @@ -12007,7 +12112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '101' x-powered-by: - ASP.NET status: @@ -12021,36 +12126,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --workload-type --query + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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/2261011636710700311","name":"2261011636710700311","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T15:48:10.9264983Z","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M17.3933791S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1187' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:09:55 GMT + - Sat, 16 Jan 2021 16:59: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: @@ -12060,7 +12170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '100' x-powered-by: - ASP.NET status: @@ -12074,37 +12184,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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","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":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"2020-12-18T15:48:10.9264983Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M47.8410176S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:09:56 GMT + - Sat, 16 Jan 2021 17:00: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: @@ -12114,7 +12228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '99' x-powered-by: - ASP.NET status: @@ -12128,36 +12242,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M18.3495505S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:09:59 GMT + - Sat, 16 Jan 2021 17:00: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: @@ -12167,7 +12286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '98' x-powered-by: - ASP.NET status: @@ -12181,37 +12300,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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","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":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"2020-12-18T15:48:10.9264983Z"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M48.83152S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '2343' + - '1304' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:01 GMT + - Sat, 16 Jan 2021 17: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: @@ -12221,7 +12344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '97' x-powered-by: - ASP.NET status: @@ -12235,36 +12358,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20friendlyName%20eq%20%27clitest-vm000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-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","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"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M19.7397278S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1220' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:01 GMT + - Sat, 16 Jan 2021 17:01: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: @@ -12274,7 +12402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '96' x-powered-by: - ASP.NET status: @@ -12288,36 +12416,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/2261011636710700311?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"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/2261011636710700311","name":"2261011636710700311","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"IaasVMRecoveryPoint","recoveryPointType":"AppConsistent","recoveryPointTime":"2020-12-18T15:48:10.9264983Z","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"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M50.2259848S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M2.7212982S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:04 GMT + - Sat, 16 Jan 2021 17:02: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: @@ -12327,7 +12460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '95' x-powered-by: - ASP.NET status: @@ -12341,36 +12474,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T15%3A45%3A15.4419135Z''\"","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: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M20.6446986S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '539' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:05 GMT + - Sat, 16 Jan 2021 17: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: @@ -12379,6 +12517,10 @@ interactions: - 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 @@ -12390,45 +12532,56 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000004?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000004'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M51.1784662S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '312' + - '1305' content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 18 Dec 2020 17:10:07 GMT + - Sat, 16 Jan 2021 17:03: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-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -12437,36 +12590,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004","name":"clitest000004","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2020-12-18T15:46:38.2471943Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-12-18T15:46:38.1847059Z","primaryEndpoints":{"blob":"https://clitest000004.blob.core.windows.net/","queue":"https://clitest000004.queue.core.windows.net/","table":"https://clitest000004.table.core.windows.net/","file":"https://clitest000004.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M21.6967576S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '974' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:08 GMT + - Sat, 16 Jan 2021 17:03:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -12475,66 +12633,71 @@ interactions: - 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: '{"properties": {"objectType": "IaasVMRestoreRequest", "recoveryPointId": - "2261011636710700311", "recoveryType": "RestoreDisks", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", - "storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000004", - "region": "southeastasia", "createNewCloudService": true, "originalStorageAccountOption": - false}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive - Content-Length: - - '686' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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/recoveryPoints/2261011636710700311/restore?api-version=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M52.2435098S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' 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/9bb46f5c-f4dd-49b0-868c-8658bce19f93?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '1305' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:10:09 GMT + - Sat, 16 Jan 2021 17:04:12 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/9bb46f5c-f4dd-49b0-868c-8658bce19f93?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.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: + - '91' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -12543,36 +12706,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9bb46f5c-f4dd-49b0-868c-8658bce19f93?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"9bb46f5c-f4dd-49b0-868c-8658bce19f93","name":"9bb46f5c-f4dd-49b0-868c-8658bce19f93","status":"Succeeded","startTime":"2020-12-18T17:10:10.2266435Z","endTime":"2020-12-18T17:10:10.2266435Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"50af692c-b97b-4f33-afba-5aef15d5bd9e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M22.7288646S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:12 GMT + - Sat, 16 Jan 2021 17:04: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: @@ -12582,7 +12750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '90' x-powered-by: - ASP.NET status: @@ -12596,33 +12764,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-disks + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --storage-account --query --restore-to-staging-storage-account + - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4.987348S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M53.3143662S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1136' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:15 GMT + - Sat, 16 Jan 2021 17:05:13 GMT expires: - '-1' pragma: @@ -12639,7 +12808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '89' x-powered-by: - ASP.NET status: @@ -12659,27 +12828,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6.3008797S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M23.7625808S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1137' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:16 GMT + - Sat, 16 Jan 2021 17:05:43 GMT expires: - '-1' pragma: @@ -12696,7 +12866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '88' x-powered-by: - ASP.NET status: @@ -12716,27 +12886,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7.1644264S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M54.3038834S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1137' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:17 GMT + - Sat, 16 Jan 2021 17:06:14 GMT expires: - '-1' pragma: @@ -12753,7 +12924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '87' x-powered-by: - ASP.NET status: @@ -12773,27 +12944,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38.0004495S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M24.8526726S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1138' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:10:48 GMT + - Sat, 16 Jan 2021 17:06:44 GMT expires: - '-1' pragma: @@ -12810,7 +12982,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '86' x-powered-by: - ASP.NET status: @@ -12830,27 +13002,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M8.8249937S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M55.6789015S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"97.9 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":77.0,"estimatedRemainingDuration":"PT5M4.1433627S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1139' + - '1305' content-type: - application/json date: - - Fri, 18 Dec 2020 17:11:19 GMT + - Sat, 16 Jan 2021 17:07:16 GMT expires: - '-1' pragma: @@ -12867,7 +13040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '85' x-powered-by: - ASP.NET status: @@ -12887,27 +13060,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M39.6412735S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M26.1083951S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:11:49 GMT + - Sat, 16 Jan 2021 17:07:45 GMT expires: - '-1' pragma: @@ -12924,7 +13098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '84' x-powered-by: - ASP.NET status: @@ -12944,27 +13118,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M10.5846469S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M56.5868605S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:12:21 GMT + - Sat, 16 Jan 2021 17:08:16 GMT expires: - '-1' pragma: @@ -12981,7 +13156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '83' x-powered-by: - ASP.NET status: @@ -13001,27 +13176,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT2M41.6817186S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M27.0373578S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:12:51 GMT + - Sat, 16 Jan 2021 17:08:47 GMT expires: - '-1' pragma: @@ -13038,7 +13214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '82' x-powered-by: - ASP.NET status: @@ -13058,27 +13234,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M12.5376164S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M57.5005428S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:13:23 GMT + - Sat, 16 Jan 2021 17:09:17 GMT expires: - '-1' pragma: @@ -13095,7 +13272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '81' x-powered-by: - ASP.NET status: @@ -13115,27 +13292,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT3M43.3874719S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M27.963395S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:13:53 GMT + - Sat, 16 Jan 2021 17:09:47 GMT expires: - '-1' pragma: @@ -13152,7 +13330,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '80' x-powered-by: - ASP.NET status: @@ -13172,27 +13350,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M15.8662472S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M58.4282207S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:14:25 GMT + - Sat, 16 Jan 2021 17:10:18 GMT expires: - '-1' pragma: @@ -13209,7 +13388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '79' x-powered-by: - ASP.NET status: @@ -13229,27 +13408,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT4M47.975816S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M29.0890364S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1139' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:14:58 GMT + - Sat, 16 Jan 2021 17:10:48 GMT expires: - '-1' pragma: @@ -13266,7 +13446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '78' x-powered-by: - ASP.NET status: @@ -13286,27 +13466,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M19.3190567S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M59.833677S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:15:29 GMT + - Sat, 16 Jan 2021 17:11:20 GMT expires: - '-1' pragma: @@ -13323,7 +13504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '77' x-powered-by: - ASP.NET status: @@ -13343,27 +13524,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT5M50.5304602S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M30.3191162S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:16:01 GMT + - Sat, 16 Jan 2021 17:11:50 GMT expires: - '-1' pragma: @@ -13380,7 +13562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '76' x-powered-by: - ASP.NET status: @@ -13400,27 +13582,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M21.3881223S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M0.7566154S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"99.98 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":78.0,"estimatedRemainingDuration":"PT5M57.7114942S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:16:31 GMT + - Sat, 16 Jan 2021 17:12:21 GMT expires: - '-1' pragma: @@ -13437,7 +13620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '75' x-powered-by: - ASP.NET status: @@ -13457,27 +13640,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT6M52.1496234S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M31.498701S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:17:02 GMT + - Sat, 16 Jan 2021 17:12:52 GMT expires: - '-1' pragma: @@ -13494,7 +13678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '74' x-powered-by: - ASP.NET status: @@ -13514,27 +13698,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M22.9053368S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M1.9111912S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:17:33 GMT + - Sat, 16 Jan 2021 17:13:22 GMT expires: - '-1' pragma: @@ -13551,7 +13736,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '73' x-powered-by: - ASP.NET status: @@ -13571,27 +13756,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT7M53.7553209S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M32.4508877S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:18:04 GMT + - Sat, 16 Jan 2021 17:13:53 GMT expires: - '-1' pragma: @@ -13608,7 +13794,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '72' x-powered-by: - ASP.NET status: @@ -13628,27 +13814,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M24.6063237S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M2.9006625S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:18:35 GMT + - Sat, 16 Jan 2021 17:14:23 GMT expires: - '-1' pragma: @@ -13665,7 +13852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '71' x-powered-by: - ASP.NET status: @@ -13685,27 +13872,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT8M55.4702157S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M33.3550987S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:19:05 GMT + - Sat, 16 Jan 2021 17:14:53 GMT expires: - '-1' pragma: @@ -13722,7 +13910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '70' x-powered-by: - ASP.NET status: @@ -13742,27 +13930,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M26.2195223S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M3.9328377S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:19:37 GMT + - Sat, 16 Jan 2021 17:15:24 GMT expires: - '-1' pragma: @@ -13779,7 +13968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '69' x-powered-by: - ASP.NET status: @@ -13799,27 +13988,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT9M59.1745262S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M34.5174133S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:20:09 GMT + - Sat, 16 Jan 2021 17:15:54 GMT expires: - '-1' pragma: @@ -13836,7 +14026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '68' x-powered-by: - ASP.NET status: @@ -13856,27 +14046,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT10M30.0878786S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M4.9836653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:20:40 GMT + - Sat, 16 Jan 2021 17:16:25 GMT expires: - '-1' pragma: @@ -13893,7 +14084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '67' x-powered-by: - ASP.NET status: @@ -13913,27 +14104,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M0.9117148S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M35.407223S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.09 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M19.8325703S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:21:10 GMT + - Sat, 16 Jan 2021 17:16:55 GMT expires: - '-1' pragma: @@ -13950,7 +14142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '66' x-powered-by: - ASP.NET status: @@ -13970,27 +14162,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11M31.8940004S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M5.8048999S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:21:42 GMT + - Sat, 16 Jan 2021 17:17:25 GMT expires: - '-1' pragma: @@ -14007,7 +14200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '65' x-powered-by: - ASP.NET status: @@ -14027,27 +14220,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M2.7825782S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress"}],"propertyBag":{"Job - Type":"Recover disks","Target Storage Account Name":"clitest000004","Recovery - point time ":"12/18/2020 3:48:10 PM"},"internalPropertyBag":{},"progressPercentage":1.0},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M36.2601034S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 + GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1140' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:22:12 GMT + - Sat, 16 Jan 2021 17:17:56 GMT expires: - '-1' pragma: @@ -14064,7 +14258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '64' x-powered-by: - ASP.NET status: @@ -14084,28 +14278,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT12M33.7505661S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M6.9900772S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:22:44 GMT + - Sat, 16 Jan 2021 17:18:26 GMT expires: - '-1' pragma: @@ -14122,7 +14316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '63' x-powered-by: - ASP.NET status: @@ -14142,28 +14336,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M4.6095766S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M37.4540191S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:23:15 GMT + - Sat, 16 Jan 2021 17:18:58 GMT expires: - '-1' pragma: @@ -14180,7 +14374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '62' x-powered-by: - ASP.NET status: @@ -14200,28 +14394,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT13M36.1980184S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M9.3172718S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:23:46 GMT + - Sat, 16 Jan 2021 17:19:29 GMT expires: - '-1' pragma: @@ -14238,7 +14432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '61' x-powered-by: - ASP.NET status: @@ -14258,28 +14452,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M7.0033363S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M39.7787731S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:24:17 GMT + - Sat, 16 Jan 2021 17:19:59 GMT expires: - '-1' pragma: @@ -14296,7 +14490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '62' x-powered-by: - ASP.NET status: @@ -14316,28 +14510,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT14M37.8944422S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M10.3349254S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:24:48 GMT + - Sat, 16 Jan 2021 17:20:29 GMT expires: - '-1' pragma: @@ -14354,7 +14548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '61' x-powered-by: - ASP.NET status: @@ -14374,28 +14568,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M9.9826105S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M40.8098875S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1244' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:25:20 GMT + - Sat, 16 Jan 2021 17:21:01 GMT expires: - '-1' pragma: @@ -14412,7 +14606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '60' x-powered-by: - ASP.NET status: @@ -14432,28 +14626,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT15M40.8776264S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M11.2404144S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:25:51 GMT + - Sat, 16 Jan 2021 17:21:31 GMT expires: - '-1' pragma: @@ -14470,7 +14664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '59' x-powered-by: - ASP.NET status: @@ -14490,28 +14684,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M11.7345831S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M41.7013964S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT3M54.8463808S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:26:22 GMT + - Sat, 16 Jan 2021 17:22:02 GMT expires: - '-1' pragma: @@ -14528,7 +14722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '58' x-powered-by: - ASP.NET status: @@ -14548,28 +14742,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT16M42.6823685S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"63.5 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M12.1452725S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":50.0,"estimatedRemainingDuration":"PT12M4.8747707S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:26:52 GMT + - Sat, 16 Jan 2021 17:22:32 GMT expires: - '-1' pragma: @@ -14586,7 +14780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '57' x-powered-by: - ASP.NET status: @@ -14606,28 +14800,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M13.5232145S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M42.5465626S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:27:24 GMT + - Sat, 16 Jan 2021 17:23:02 GMT expires: - '-1' pragma: @@ -14644,7 +14838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '56' x-powered-by: - ASP.NET status: @@ -14664,28 +14858,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT17M44.5195952S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M13.0814589S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:27:54 GMT + - Sat, 16 Jan 2021 17:23:32 GMT expires: - '-1' pragma: @@ -14702,7 +14896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '55' x-powered-by: - ASP.NET status: @@ -14722,28 +14916,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M15.3730023S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M43.8155924S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:28:26 GMT + - Sat, 16 Jan 2021 17:24:04 GMT expires: - '-1' pragma: @@ -14760,7 +14954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '54' x-powered-by: - ASP.NET status: @@ -14780,28 +14974,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT18M46.0980386S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M14.3006132S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:28:56 GMT + - Sat, 16 Jan 2021 17:24:34 GMT expires: - '-1' pragma: @@ -14818,7 +15012,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '53' x-powered-by: - ASP.NET status: @@ -14838,28 +15032,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M16.9035177S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M45.0577009S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:29:27 GMT + - Sat, 16 Jan 2021 17:25:05 GMT expires: - '-1' pragma: @@ -14876,7 +15070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '62' x-powered-by: - ASP.NET status: @@ -14896,28 +15090,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT19M47.7236248S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M15.4664653S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:29:58 GMT + - Sat, 16 Jan 2021 17:25:35 GMT expires: - '-1' pragma: @@ -14934,7 +15128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '61' x-powered-by: - ASP.NET status: @@ -14954,28 +15148,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M18.4943001S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M45.9083461S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:30:28 GMT + - Sat, 16 Jan 2021 17:26:06 GMT expires: - '-1' pragma: @@ -14992,7 +15186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '60' x-powered-by: - ASP.NET status: @@ -15012,28 +15206,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT20M49.301175S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M16.3719986S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:30:59 GMT + - Sat, 16 Jan 2021 17:26:36 GMT expires: - '-1' pragma: @@ -15050,7 +15244,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '59' x-powered-by: - ASP.NET status: @@ -15070,28 +15264,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M20.4246671S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M46.7969067S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT4M31.497641S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:31:30 GMT + - Sat, 16 Jan 2021 17:27:07 GMT expires: - '-1' pragma: @@ -15108,7 +15302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '58' x-powered-by: - ASP.NET status: @@ -15128,28 +15322,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT21M51.2107344S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"98.49 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M17.3125732S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":77.0,"estimatedRemainingDuration":"PT4M56.8751883S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:32:01 GMT + - Sat, 16 Jan 2021 17:27:37 GMT expires: - '-1' pragma: @@ -15166,7 +15360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '57' x-powered-by: - ASP.NET status: @@ -15186,28 +15380,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M21.9996224S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M47.8451047S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:32:32 GMT + - Sat, 16 Jan 2021 17:28:08 GMT expires: - '-1' pragma: @@ -15224,7 +15418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '56' x-powered-by: - ASP.NET status: @@ -15244,28 +15438,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT22M52.7702717S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M18.3053214S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:33:02 GMT + - Sat, 16 Jan 2021 17:28:37 GMT expires: - '-1' pragma: @@ -15282,7 +15476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '55' x-powered-by: - ASP.NET status: @@ -15302,28 +15496,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M23.5014188S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT43M48.7813895S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:33:34 GMT + - Sat, 16 Jan 2021 17:29:08 GMT expires: - '-1' pragma: @@ -15340,7 +15534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '54' x-powered-by: - ASP.NET status: @@ -15360,28 +15554,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT23M54.2611578S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M19.6504519S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:34:04 GMT + - Sat, 16 Jan 2021 17:29:39 GMT expires: - '-1' pragma: @@ -15398,7 +15592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '53' x-powered-by: - ASP.NET status: @@ -15418,28 +15612,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M25.014834S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT44M50.1092577S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:34:34 GMT + - Sat, 16 Jan 2021 17:30:10 GMT expires: - '-1' pragma: @@ -15456,7 +15650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '60' x-powered-by: - ASP.NET status: @@ -15476,28 +15670,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT24M55.8978726S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M20.5530568S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:35:06 GMT + - Sat, 16 Jan 2021 17:30:40 GMT expires: - '-1' pragma: @@ -15514,7 +15708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '59' x-powered-by: - ASP.NET status: @@ -15534,28 +15728,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M27.9473571S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT45M51.0051594S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:35:38 GMT + - Sat, 16 Jan 2021 17:31:11 GMT expires: - '-1' pragma: @@ -15572,7 +15766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '58' x-powered-by: - ASP.NET status: @@ -15592,28 +15786,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT25M58.8217533S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M21.4512978S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:36:08 GMT + - Sat, 16 Jan 2021 17:31:41 GMT expires: - '-1' pragma: @@ -15630,7 +15824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '57' x-powered-by: - ASP.NET status: @@ -15650,28 +15844,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT26M29.7148981S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT46M51.8987498S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"113.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":89.0,"estimatedRemainingDuration":"PT5M8.1459218S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:36:40 GMT + - Sat, 16 Jan 2021 17:32:11 GMT expires: - '-1' pragma: @@ -15688,7 +15882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '56' x-powered-by: - ASP.NET status: @@ -15708,28 +15902,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M0.6019282S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M22.304848S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M3.4606061S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1245' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:37:10 GMT + - Sat, 16 Jan 2021 17:32:41 GMT expires: - '-1' pragma: @@ -15746,7 +15940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '55' x-powered-by: - ASP.NET status: @@ -15766,28 +15960,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT27M31.3906658S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT47M52.8896141S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:37:42 GMT + - Sat, 16 Jan 2021 17:33:13 GMT expires: - '-1' pragma: @@ -15804,7 +15998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '54' x-powered-by: - ASP.NET status: @@ -15824,28 +16018,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M2.1992697S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M23.3434065S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:38:12 GMT + - Sat, 16 Jan 2021 17:33:43 GMT expires: - '-1' pragma: @@ -15862,7 +16056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '53' x-powered-by: - ASP.NET status: @@ -15882,28 +16076,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT28M33.0622953S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT48M53.8406451S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:38:43 GMT + - Sat, 16 Jan 2021 17:34:13 GMT expires: - '-1' pragma: @@ -15920,7 +16114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '52' x-powered-by: - ASP.NET status: @@ -15940,28 +16134,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M3.9445485S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M24.304214S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:39:15 GMT + - Sat, 16 Jan 2021 17:34:44 GMT expires: - '-1' pragma: @@ -15978,7 +16172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '51' x-powered-by: - ASP.NET status: @@ -15998,28 +16192,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT29M35.7569857S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT49M55.0947895S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:39:45 GMT + - Sat, 16 Jan 2021 17:35:15 GMT expires: - '-1' pragma: @@ -16036,7 +16230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '50' x-powered-by: - ASP.NET status: @@ -16056,28 +16250,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M6.6498201S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M25.564932S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:40:17 GMT + - Sat, 16 Jan 2021 17:35:45 GMT expires: - '-1' pragma: @@ -16094,7 +16288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '49' x-powered-by: - ASP.NET status: @@ -16114,28 +16308,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT30M38.529869S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT50M55.9634983S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:40:48 GMT + - Sat, 16 Jan 2021 17:36:16 GMT expires: - '-1' pragma: @@ -16152,7 +16346,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '48' x-powered-by: - ASP.NET status: @@ -16172,28 +16366,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M9.3780225S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M26.3714086S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:41:20 GMT + - Sat, 16 Jan 2021 17:36:46 GMT expires: - '-1' pragma: @@ -16210,7 +16404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '47' x-powered-by: - ASP.NET status: @@ -16230,28 +16424,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT31M40.269139S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"116.18 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT51M56.8414828S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":91.0,"estimatedRemainingDuration":"PT2M31.4239675S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT3M56.6069395S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:41:50 GMT + - Sat, 16 Jan 2021 17:37:17 GMT expires: - '-1' pragma: @@ -16268,7 +16462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '46' x-powered-by: - ASP.NET status: @@ -16288,28 +16482,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M11.009275S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M27.2526992S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:42:21 GMT + - Sat, 16 Jan 2021 17:37:47 GMT expires: - '-1' pragma: @@ -16326,7 +16520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '45' x-powered-by: - ASP.NET status: @@ -16346,28 +16540,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT32M41.8597999S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT52M57.6751933S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:42:52 GMT + - Sat, 16 Jan 2021 17:38:18 GMT expires: - '-1' pragma: @@ -16384,7 +16578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '44' x-powered-by: - ASP.NET status: @@ -16404,28 +16598,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M12.752882S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M28.1916695S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:43:24 GMT + - Sat, 16 Jan 2021 17:38:48 GMT expires: - '-1' pragma: @@ -16442,7 +16636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '43' x-powered-by: - ASP.NET status: @@ -16462,28 +16656,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT33M44.5134775S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT53M58.6723297S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:43:54 GMT + - Sat, 16 Jan 2021 17:39:18 GMT expires: - '-1' pragma: @@ -16500,7 +16694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '42' x-powered-by: - ASP.NET status: @@ -16520,28 +16714,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M15.397698S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M29.0785375S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:44:26 GMT + - Sat, 16 Jan 2021 17:39:49 GMT expires: - '-1' pragma: @@ -16558,7 +16752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '41' x-powered-by: - ASP.NET status: @@ -16578,28 +16772,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT34M46.2081325S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT54M59.5478644S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:44:56 GMT + - Sat, 16 Jan 2021 17:40:19 GMT expires: - '-1' pragma: @@ -16616,7 +16810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '40' x-powered-by: - ASP.NET status: @@ -16636,28 +16830,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M17.0590951S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT55M30.2187304S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:45:28 GMT + - Sat, 16 Jan 2021 17:40:50 GMT expires: - '-1' pragma: @@ -16674,7 +16868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '39' x-powered-by: - ASP.NET status: @@ -16694,28 +16888,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT35M50.3068422S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M0.6907477S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:46:00 GMT + - Sat, 16 Jan 2021 17:41:20 GMT expires: - '-1' pragma: @@ -16732,7 +16926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '38' x-powered-by: - ASP.NET status: @@ -16752,28 +16946,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M21.1782187S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT56M31.4379009S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:46:31 GMT + - Sat, 16 Jan 2021 17:41:51 GMT expires: - '-1' pragma: @@ -16790,7 +16984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '37' x-powered-by: - ASP.NET status: @@ -16810,28 +17004,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT36M52.2272223S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"118.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M1.9151434S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"117.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":93.0,"estimatedRemainingDuration":"PT2M14.2210743S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":92.0,"estimatedRemainingDuration":"PT4M21.7927372S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:47:02 GMT + - Sat, 16 Jan 2021 17:42:22 GMT expires: - '-1' pragma: @@ -16848,7 +17042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '36' x-powered-by: - ASP.NET status: @@ -16868,28 +17062,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M23.6867088S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT57M32.3941345S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:47:33 GMT + - Sat, 16 Jan 2021 17:42:52 GMT expires: - '-1' pragma: @@ -16906,7 +17100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '35' x-powered-by: - ASP.NET status: @@ -16926,28 +17120,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT37M54.5044547S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M2.8349077S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:48:05 GMT + - Sat, 16 Jan 2021 17:43:22 GMT expires: - '-1' pragma: @@ -16964,7 +17158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '34' x-powered-by: - ASP.NET status: @@ -16984,28 +17178,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M25.6880812S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT58M33.2667867S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:48:36 GMT + - Sat, 16 Jan 2021 17:43:53 GMT expires: - '-1' pragma: @@ -17022,7 +17216,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '33' x-powered-by: - ASP.NET status: @@ -17042,28 +17236,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT38M57.0559957S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M3.7446995S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1307' content-type: - application/json date: - - Fri, 18 Dec 2020 17:49:07 GMT + - Sat, 16 Jan 2021 17:44:24 GMT expires: - '-1' pragma: @@ -17080,7 +17274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '32' x-powered-by: - ASP.NET status: @@ -17100,28 +17294,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M28.0316661S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT59M34.4586158S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:49:38 GMT + - Sat, 16 Jan 2021 17:44:54 GMT expires: - '-1' pragma: @@ -17138,7 +17332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '31' x-powered-by: - ASP.NET status: @@ -17158,28 +17352,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT39M58.9706394S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H5.0129996S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:50:08 GMT + - Sat, 16 Jan 2021 17:45:24 GMT expires: - '-1' pragma: @@ -17196,7 +17390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '30' x-powered-by: - ASP.NET status: @@ -17216,28 +17410,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT40M29.859557S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H35.609404S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1306' content-type: - application/json date: - - Fri, 18 Dec 2020 17:50:40 GMT + - Sat, 16 Jan 2021 17:45:56 GMT expires: - '-1' pragma: @@ -17254,7 +17448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '29' x-powered-by: - ASP.NET status: @@ -17274,28 +17468,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M1.9017201S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H1M6.4686259S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"121.19 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":95.0,"estimatedRemainingDuration":"PT2M44.4071634S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1308' content-type: - application/json date: - - Fri, 18 Dec 2020 17:51:12 GMT + - Sat, 16 Jan 2021 17:46:27 GMT expires: - '-1' pragma: @@ -17312,7 +17506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '28' x-powered-by: - ASP.NET status: @@ -17332,28 +17526,31 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT41M33.1918607S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M7.1979817S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM","Config Blob Name":"config-clitestvm7pkgm-93d1819a-f505-4392-ab1b-d4776e37b511.json","Config + Blob Container Name":"clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157/config-clitestvm7pkgm-93d1819a-f505-4392-ab1b-d4776e37b511.json","Template + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157/azuredeploy93d1819a-f505-4392-ab1b-d4776e37b511.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":99.0,"estimatedRemainingDuration":"PT2M"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2021-01-16T16:45:19.9541968Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1247' + - '1822' content-type: - application/json date: - - Fri, 18 Dec 2020 17:51:44 GMT + - Sat, 16 Jan 2021 17:47:27 GMT expires: - '-1' pragma: @@ -17370,7 +17567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '149' x-powered-by: - ASP.NET status: @@ -17390,28 +17587,31 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M4.0339555S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"InProgress","taskExecutionDetails":"122.73 + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/93d1819a-f505-4392-ab1b-d4776e37b511","name":"93d1819a-f505-4392-ab1b-d4776e37b511","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1H2M7.0637576S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM"},"internalPropertyBag":{},"progressPercentage":96.0,"estimatedRemainingDuration":"PT1M17.5230287S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"InProgress","startTime":"2020-12-18T17:10:10.2266435Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + VM Name":"vmName","Target Storage Account Name":"clitest000004","Recovery + point time ":"1/16/2021 3:43:25 PM","Config Blob Name":"config-clitestvm7pkgm-93d1819a-f505-4392-ab1b-d4776e37b511.json","Config + Blob Container Name":"clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157","Config + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157/config-clitestvm7pkgm-93d1819a-f505-4392-ab1b-d4776e37b511.json","Template + Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvm7pkgm-33aa44053420400ca897b36ef3bc8157/azuredeploy93d1819a-f505-4392-ab1b-d4776e37b511.json"},"internalPropertyBag":{"restoreLocationType":"RestoreDisks"},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2021-01-16T16:45:19.9541968Z","endTime":"2021-01-16T17:47:27.0179544Z","activityId":"33b635f4-581a-11eb-b724-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1246' + - '1863' content-type: - application/json date: - - Fri, 18 Dec 2020 17:52:14 GMT + - Sat, 16 Jan 2021 17:47:57 GMT expires: - '-1' pragma: @@ -17428,7 +17628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '148' x-powered-by: - ASP.NET status: @@ -17442,44 +17642,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/50af692c-b97b-4f33-afba-5aef15d5bd9e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/50af692c-b97b-4f33-afba-5aef15d5bd9e","name":"50af692c-b97b-4f33-afba-5aef15d5bd9e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT42M7.9455765S","actionsInfo":[1],"virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","duration":"PT0S","status":"Completed","taskExecutionDetails":"127 - GBs / 127 GBs Transferred"}],"propertyBag":{"Job Type":"Recover disks","Target - Storage Account Name":"clitest000004","Recovery point time ":"12/18/2020 3:48:10 - PM","Config Blob Name":"config-clitestvmv2qwu-50af692c-b97b-4f33-afba-5aef15d5bd9e.json","Config - Blob Container Name":"clitestvmv2qwu-bd296aaf958f40cc9af2e7fbb9337c33","Config - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmv2qwu-bd296aaf958f40cc9af2e7fbb9337c33/config-clitestvmv2qwu-50af692c-b97b-4f33-afba-5aef15d5bd9e.json","Template - Blob Uri":"https://clitest000004.blob.core.windows.net/clitestvmv2qwu-bd296aaf958f40cc9af2e7fbb9337c33/azuredeploy50af692c-b97b-4f33-afba-5aef15d5bd9e.json"},"internalPropertyBag":{},"progressPercentage":100.0,"estimatedRemainingDuration":"PT0S"},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Restore","status":"Completed","startTime":"2020-12-18T17:10:10.2266435Z","endTime":"2020-12-18T17:52:18.17222Z","activityId":"d95090ac-4153-11eb-b1f3-c03eba45757e"}}' + 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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '1799' + - '2486' content-type: - application/json date: - - Fri, 18 Dec 2020 17:52:44 GMT + - Sat, 16 Jan 2021 17:48: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: @@ -17489,12 +17682,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '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": "", "protectedItemType": "Microsoft.Compute/virtualMachines", "protectionState": + "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '356' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i --backup-management-type --workload-type --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 17:48: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-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: @@ -17509,25 +17757,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-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","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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"2020-12-18T15:48:10.9264983Z"}}]}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2495' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:17 GMT + - Sat, 16 Jan 2021 17:48:31 GMT expires: - '-1' pragma: @@ -17550,9 +17797,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/clitest-vm000003", - "policyId": "", "protectedItemType": "Microsoft.Compute/virtualMachines", "protectionState": - "ProtectionStopped"}}' + body: null headers: Accept: - application/json @@ -17562,48 +17807,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '356' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:53:20 GMT + - Sat, 16 Jan 2021 17:48: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.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: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -17618,15 +17863,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17635,7 +17880,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:22 GMT + - Sat, 16 Jan 2021 17:48:34 GMT expires: - '-1' pragma: @@ -17651,7 +17896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -17671,15 +17916,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17688,7 +17933,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:24 GMT + - Sat, 16 Jan 2021 17:48:35 GMT expires: - '-1' pragma: @@ -17704,7 +17949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -17724,15 +17969,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17741,7 +17986,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:25 GMT + - Sat, 16 Jan 2021 17:48:36 GMT expires: - '-1' pragma: @@ -17757,7 +18002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -17777,15 +18022,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17794,7 +18039,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:27 GMT + - Sat, 16 Jan 2021 17:48:38 GMT expires: - '-1' pragma: @@ -17810,7 +18055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -17830,15 +18075,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17847,7 +18092,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:29 GMT + - Sat, 16 Jan 2021 17:48:39 GMT expires: - '-1' pragma: @@ -17863,7 +18108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -17883,15 +18128,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"InProgress","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -17900,7 +18145,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:30 GMT + - Sat, 16 Jan 2021 17:48:40 GMT expires: - '-1' pragma: @@ -17916,7 +18161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -17936,15 +18181,68 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/68a14ee6-aeb1-4784-8a11-79afc0fe56a8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 response: body: - string: '{"id":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","name":"68a14ee6-aeb1-4784-8a11-79afc0fe56a8","status":"Succeeded","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"2020-12-18T17:53:20.3127725Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6fcaa32-5824-4b50-a43a-e6b938586ed3"}}' + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"InProgress","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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: + - '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: + - -g -v -c -i --backup-management-type --workload-type --yes + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/f1279af7-b669-4e95-a204-cf030c9bf0a6?api-version=2020-10-01 + response: + body: + string: '{"id":"f1279af7-b669-4e95-a204-cf030c9bf0a6","name":"f1279af7-b669-4e95-a204-cf030c9bf0a6","status":"Succeeded","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"2021-01-16T17:48:30.6676976Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5b610b7e-6373-41cb-826b-d0a24a6e0549"}}' headers: cache-control: - no-cache @@ -17953,7 +18251,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:32 GMT + - Sat, 16 Jan 2021 17:48:43 GMT expires: - '-1' pragma: @@ -17969,7 +18267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '140' x-powered-by: - ASP.NET status: @@ -17989,16 +18287,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/c6fcaa32-5824-4b50-a43a-e6b938586ed3?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5b610b7e-6373-41cb-826b-d0a24a6e0549?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c6fcaa32-5824-4b50-a43a-e6b938586ed3","name":"c6fcaa32-5824-4b50-a43a-e6b938586ed3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.2900337S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2020-12-18T17:53:20.3127725Z","endTime":"2020-12-18T17:53:31.6028062Z","activityId":"e71594e3-4159-11eb-8b81-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/5b610b7e-6373-41cb-826b-d0a24a6e0549","name":"5b610b7e-6373-41cb-826b-d0a24a6e0549","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.6688943S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":""}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DisableBackup","status":"Completed","startTime":"2021-01-16T17:48:30.6676976Z","endTime":"2021-01-16T17:48:42.3365919Z","activityId":"0a0e0016-5823-11eb-9e0d-c8f750f92764"}}' headers: cache-control: - no-cache @@ -18007,7 +18305,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:35 GMT + - Sat, 16 Jan 2021 17:48:44 GMT expires: - '-1' pragma: @@ -18044,25 +18342,25 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":[]}]},"RestoreOperationStatusKPI":{"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":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"","policyName":"","lastRecoveryPoint":"2020-12-18T15:48:10.9264983Z"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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":"","policyName":"","lastRecoveryPoint":"2021-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '2250' + - '2241' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:37 GMT + - Sat, 16 Jan 2021 17:48:45 GMT expires: - '-1' pragma: @@ -18098,15 +18396,15 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-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":["2020-12-19T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-19T01:30: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-01-17T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-17T01:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -18115,7 +18413,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:38 GMT + - Sat, 16 Jan 2021 17:48:45 GMT expires: - '-1' pragma: @@ -18157,28 +18455,28 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2019-06-15 + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:53:41 GMT + - Sat, 16 Jan 2021 17:48: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2019-06-15 + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -18206,15 +18504,280 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 + response: + body: + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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 resume + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --policy-name --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 + response: + body: + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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: + - '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 resume + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --policy-name --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 + response: + body: + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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: + - '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 resume + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --policy-name --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 + response: + body: + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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: + - '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 resume + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --policy-name --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 + response: + body: + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:48: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: + - '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 resume + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --policy-name --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18223,7 +18786,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:43 GMT + - Sat, 16 Jan 2021 17:48:59 GMT expires: - '-1' pragma: @@ -18239,7 +18802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -18259,15 +18822,15 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18276,7 +18839,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:45 GMT + - Sat, 16 Jan 2021 17:49:00 GMT expires: - '-1' pragma: @@ -18292,7 +18855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -18312,15 +18875,15 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"InProgress","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18329,7 +18892,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:46 GMT + - Sat, 16 Jan 2021 17:49:01 GMT expires: - '-1' pragma: @@ -18345,7 +18908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -18365,24 +18928,24 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/bfafb927-04eb-422c-8f21-0d5b0884c64c?api-version=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"bfafb927-04eb-422c-8f21-0d5b0884c64c","name":"bfafb927-04eb-422c-8f21-0d5b0884c64c","status":"Succeeded","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"2021-01-16T17:48:51.1757417Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f901ffef-32b0-4e29-97b3-88c555e0db62"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:48 GMT + - Sat, 16 Jan 2021 17:49:03 GMT expires: - '-1' pragma: @@ -18398,7 +18961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -18418,30 +18981,32 @@ interactions: ParameterSetName: - -g -v -c -i --policy-name --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f901ffef-32b0-4e29-97b3-88c555e0db62?api-version=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f901ffef-32b0-4e29-97b3-88c555e0db62","name":"f901ffef-32b0-4e29-97b3-88c555e0db62","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.3126348S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-16T17:48:51.1757417Z","endTime":"2021-01-16T17:49:02.4883765Z","activityId":"143ae136-5823-11eb-a3ce-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '968' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:50 GMT + - Sat, 16 Jan 2021 17:49: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: @@ -18451,7 +19016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -18465,30 +19030,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection resume + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --policy-name --backup-management-type + - -g -v -c -i --backup-management-type --workload-type --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"InProgress","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"0001-01-01T00:00:00"}' + 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":[]}]},"RestoreOperationStatusKPI":{"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-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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-01-16T15:43:25.0545384Z"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2486' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:51 GMT + - Sat, 16 Jan 2021 17:49:03 GMT expires: - '-1' pragma: @@ -18504,7 +19071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -18518,51 +19085,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection resume + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --policy-name --backup-management-type + - -g -v -c -i --backup-management-type --workload-type --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ab2c43ae-fefc-472c-9cd3-1ad291cd30db?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","name":"ab2c43ae-fefc-472c-9cd3-1ad291cd30db","status":"Succeeded","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"2020-12-18T17:53:42.0950502Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ea101318-fa67-487a-ade9-d5876fd062fa"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:53:53 GMT + - Sat, 16 Jan 2021 17:49: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/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-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: - - '143' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -18571,38 +19137,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection resume + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --policy-name --backup-management-type + - -g -v -c -i --backup-management-type --workload-type --delete-backup-data + --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ea101318-fa67-487a-ade9-d5876fd062fa?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ea101318-fa67-487a-ade9-d5876fd062fa","name":"ea101318-fa67-487a-ade9-d5876fd062fa","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.0686502S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T17:53:42.0950502Z","endTime":"2020-12-18T17:53:53.1637004Z","activityId":"f2a91792-4159-11eb-9d33-c03eba45757e"}}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '968' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:55 GMT + - Sat, 16 Jan 2021 17:49: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: @@ -18633,25 +19198,24 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-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","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":[]}]},"RestoreOperationStatusKPI":{"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":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"2020-12-18T15:48:10.9264983Z"}}]}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2495' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:53:58 GMT + - Sat, 16 Jan 2021 17:49:05 GMT expires: - '-1' pragma: @@ -18667,7 +19231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -18684,47 +19248,49 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:53:59 GMT + - Sat, 16 Jan 2021 17:49:07 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + 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: @@ -18740,15 +19306,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18757,7 +19323,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:02 GMT + - Sat, 16 Jan 2021 17:49:08 GMT expires: - '-1' pragma: @@ -18773,7 +19339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -18794,15 +19360,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18811,7 +19377,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:03 GMT + - Sat, 16 Jan 2021 17:49:09 GMT expires: - '-1' pragma: @@ -18827,7 +19393,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -18848,15 +19414,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18865,7 +19431,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:05 GMT + - Sat, 16 Jan 2021 17:49:10 GMT expires: - '-1' pragma: @@ -18881,7 +19447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -18902,15 +19468,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18919,7 +19485,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:06 GMT + - Sat, 16 Jan 2021 17:49:12 GMT expires: - '-1' pragma: @@ -18935,7 +19501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -18956,15 +19522,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -18973,7 +19539,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:08 GMT + - Sat, 16 Jan 2021 17:49:14 GMT expires: - '-1' pragma: @@ -18989,7 +19555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '142' x-powered-by: - ASP.NET status: @@ -19010,15 +19576,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"InProgress","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"InProgress","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19027,7 +19593,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:10 GMT + - Sat, 16 Jan 2021 17:49:15 GMT expires: - '-1' pragma: @@ -19043,7 +19609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '141' x-powered-by: - ASP.NET status: @@ -19064,15 +19630,15 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7c02bdfb-ad9c-4c56-83c0-453791db4006?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8fa3194b-8e98-4293-ab7f-718ce8e79be0?api-version=2020-10-01 response: body: - string: '{"id":"7c02bdfb-ad9c-4c56-83c0-453791db4006","name":"7c02bdfb-ad9c-4c56-83c0-453791db4006","status":"Succeeded","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"2020-12-18T17:54:00.2429681Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a166268f-d871-4beb-970c-9084e2a2f8c5"}}' + string: '{"id":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","name":"8fa3194b-8e98-4293-ab7f-718ce8e79be0","status":"Succeeded","startTime":"2021-01-16T17:49:04.6490071Z","endTime":"2021-01-16T17:49:04.6490071Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2c79f12f-4619-4ed8-b3e1-c7ffac96ef50"}}' headers: cache-control: - no-cache @@ -19081,7 +19647,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:11 GMT + - Sat, 16 Jan 2021 17:49:16 GMT expires: - '-1' pragma: @@ -19097,7 +19663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '140' x-powered-by: - ASP.NET status: @@ -19118,16 +19684,16 @@ interactions: - -g -v -c -i --backup-management-type --workload-type --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/a166268f-d871-4beb-970c-9084e2a2f8c5?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2c79f12f-4619-4ed8-b3e1-c7ffac96ef50?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a166268f-d871-4beb-970c-9084e2a2f8c5","name":"a166268f-d871-4beb-970c-9084e2a2f8c5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.6976859S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T17:54:00.2429681Z","endTime":"2020-12-18T17:54:11.940654Z","activityId":"ff4eae48-4159-11eb-91c8-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2c79f12f-4619-4ed8-b3e1-c7ffac96ef50","name":"2c79f12f-4619-4ed8-b3e1-c7ffac96ef50","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.959628S","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-01-16T17:49:04.6490071Z","endTime":"2021-01-16T17:49:16.6086351Z","activityId":"1f27ba04-5823-11eb-aa83-c8f750f92764"}}' headers: cache-control: - no-cache @@ -19136,7 +19702,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:13 GMT + - Sat, 16 Jan 2021 17:49:16 GMT expires: - '-1' pragma: @@ -19173,12 +19739,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -19190,7 +19756,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:16 GMT + - Sat, 16 Jan 2021 17:49:17 GMT expires: - '-1' pragma: @@ -19226,25 +19792,25 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":[]}]},"RestoreOperationStatusKPI":{"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":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"","policyName":"","lastRecoveryPoint":"2020-12-18T15:48:10.9264983Z","deferredDeleteTimeInUTC":"2020-12-18T17:54:00.2429681Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:41.6209602"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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":"","policyName":"","lastRecoveryPoint":"2021-01-16T15:43:25.0545384Z","deferredDeleteTimeInUTC":"2021-01-16T17:49:04.6490071Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"3.23:59:46.5647425"}}]}' headers: cache-control: - no-cache content-length: - - '2395' + - '2385' content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:18 GMT + - Sat, 16 Jan 2021 17:49:18 GMT expires: - '-1' pragma: @@ -19260,7 +19826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -19281,25 +19847,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":[]}]},"RestoreOperationStatusKPI":{"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":"ProtectionStopped","healthStatus":"Passed","healthDetails":[{"code":400239,"title":"IaasVmHealthGreenDefault","message":"Backup - pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2020-12-18T15:48:07.6518951Z","protectedItemDataId":"2260912566921249654","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":"","policyName":"","lastRecoveryPoint":"2020-12-18T15:48:10.9264983Z","deferredDeleteTimeInUTC":"2020-12-18T17:54:00.2429681Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:39.5646305"}}]}' + pre-check status of this virtual machine is OK.","recommendations":[]}],"lastBackupStatus":"Completed","lastBackupTime":"2021-01-16T15:43:21.5222636Z","protectedItemDataId":"1413410997","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":"","policyName":"","lastRecoveryPoint":"2021-01-16T15:43:25.0545384Z","deferredDeleteTimeInUTC":"2021-01-16T17:49:04.6490071Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"3.23:59:45.4427319"}}]}' headers: cache-control: - no-cache content-length: - - '2395' + - '2385' content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:20 GMT + - Sat, 16 Jan 2021 17:49:18 GMT expires: - '-1' pragma: @@ -19338,28 +19904,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:54:22 GMT + - Sat, 16 Jan 2021 17:49: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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -19388,15 +19954,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19405,7 +19971,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:24 GMT + - Sat, 16 Jan 2021 17:49:20 GMT expires: - '-1' pragma: @@ -19442,15 +20008,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19459,7 +20025,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:26 GMT + - Sat, 16 Jan 2021 17:49:22 GMT expires: - '-1' pragma: @@ -19496,15 +20062,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19513,7 +20079,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:28 GMT + - Sat, 16 Jan 2021 17:49:23 GMT expires: - '-1' pragma: @@ -19550,15 +20116,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19567,7 +20133,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:30 GMT + - Sat, 16 Jan 2021 17:49:24 GMT expires: - '-1' pragma: @@ -19604,15 +20170,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19621,7 +20187,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:32 GMT + - Sat, 16 Jan 2021 17:49:26 GMT expires: - '-1' pragma: @@ -19658,15 +20224,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"InProgress","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -19675,7 +20241,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:33 GMT + - Sat, 16 Jan 2021 17:49:27 GMT expires: - '-1' pragma: @@ -19712,24 +20278,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/ef5a8cfa-df3c-4304-9eef-b9aaca948b83?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 response: body: - string: '{"id":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","name":"ef5a8cfa-df3c-4304-9eef-b9aaca948b83","status":"Succeeded","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"2020-12-18T17:54:22.7355942Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"70418441-5a04-4bef-8ea5-181617d513bc"}}' + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:35 GMT + - Sat, 16 Jan 2021 17:49:28 GMT expires: - '-1' pragma: @@ -19766,25 +20332,187 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 + response: + body: + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:49: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 + response: + body: + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"InProgress","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:49: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/115222f8-bb78-4c5d-a1af-162bc2e88958?api-version=2020-10-01 + response: + body: + string: '{"id":"115222f8-bb78-4c5d-a1af-162bc2e88958","name":"115222f8-bb78-4c5d-a1af-162bc2e88958","status":"Succeeded","startTime":"2021-01-16T17:49:20.0164343Z","endTime":"2021-01-16T17:49:20.0164343Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a8307e43-6fe0-43f3-8cd9-b2c9c0f9d11c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:49: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: + - '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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/70418441-5a04-4bef-8ea5-181617d513bc?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a8307e43-6fe0-43f3-8cd9-b2c9c0f9d11c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/70418441-5a04-4bef-8ea5-181617d513bc","name":"70418441-5a04-4bef-8ea5-181617d513bc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.28012S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"1"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T17:54:22.7355942Z","endTime":"2020-12-18T17:54:34.0157142Z","activityId":"0cb0b431-415a-11eb-80bf-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a8307e43-6fe0-43f3-8cd9-b2c9c0f9d11c","name":"a8307e43-6fe0-43f3-8cd9-b2c9c0f9d11c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.3626598S","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-01-16T17:49:20.0164343Z","endTime":"2021-01-16T17:49:31.3790941Z","activityId":"27e29553-5823-11eb-bb26-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '969' + - '971' content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:37 GMT + - Sat, 16 Jan 2021 17:49:32 GMT expires: - '-1' pragma: @@ -19823,8 +20551,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -19849,7 +20577,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:54:40 GMT + - Sat, 16 Jan 2021 17:49:33 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_softdelete.yaml index 05c6996c1ca..e8246051d2c 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_softdelete.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_softdelete.yaml @@ -17,1226 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.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?api-version=2016-06-01 response: body: - string: '{"error":{"code":"MissingSubscriptionRegistration","message":"The subscription - is not registered to use namespace ''Microsoft.RecoveryServices''. See https://aka.ms/rps-not-found - for how to register subscriptions.","details":[{"code":"MissingSubscriptionRegistration","target":"Microsoft.RecoveryServices","message":"The - subscription is not registered to use namespace ''Microsoft.RecoveryServices''. - See https://aka.ms/rps-not-found for how to register subscriptions."}]}}' - headers: - cache-control: - - no-cache - content-length: - - '469' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:54:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 409 - message: Conflict -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - python-requests/2.22.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/register?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:54:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:02 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.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:12 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.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:22 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.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:43 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.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' - headers: - cache-control: - - no-cache - content-length: - - '10748' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:55:53 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.22.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West - US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast - Asia","North Central US","South Central US","Japan East","Japan West","Australia - East","Australia Southeast","Central US","East US 2","Central India","South - India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East"],"apiVersions":["2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registered"}' - headers: - cache-control: - - no-cache - content-length: - - '10747' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:56:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "properties": {}, "sku": {"name": "Standard"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup vault create - Connection: - - keep-alive - Content-Length: - - '69' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g --location - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.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?api-version=2016-06-01 - response: - body: - string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T17%3A56%3A07.0646856Z''\"","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":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-15T14%3A10%3A11.8427402Z''\"","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 @@ -1245,7 +34,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:56:07 GMT + - Fri, 15 Jan 2021 14:10:13 GMT expires: - '-1' pragma: @@ -1275,15 +64,15 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-18T17:54:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-15T14:09:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1292,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:56:07 GMT + - Fri, 15 Jan 2021 14:10:14 GMT expires: - '-1' pragma: @@ -1371,35 +160,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 18 Dec 2020 17:56:08 GMT + - Fri, 15 Jan 2021 14:10:15 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 18 Dec 2020 18:01:08 GMT + - Fri, 15 Jan 2021 14:15:15 GMT source-age: - - '146' + - '229' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - 1.1 varnish (Varnish/6.0), 1.1 varnish x-cache: - - HIT, MISS + - HIT, HIT x-cache-hits: - - 2, 0 + - 2, 1 x-content-type-options: - nosniff x-fastly-request-id: - - cc189acd84fc5d2985197ac8d46a6a033103f116 + - 2fc17f788ec10408eac16facd379e5673af2c330 x-frame-options: - deny x-github-request-id: - - 8D3A:6FC8:51B49E:5C33AA:5FDCED36 + - 345C:61E7:B60E8:C0857:60017CFC x-served-by: - - cache-mia11379-MIA + - cache-sin18030-SIN x-timer: - - S1608314169.582789,VS0,VE24 + - S1610719816.503083,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -1409,7 +198,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1419,10 +208,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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: @@ -1436,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:56:08 GMT + - Fri, 15 Jan 2021 14:10:15 GMT expires: - '-1' pragma: @@ -1504,18 +290,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US 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_eYu2HoYObm1EriCgRMuazgnJ6PILOIuV","name":"vm_deploy_eYu2HoYObm1EriCgRMuazgnJ6PILOIuV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10784799506879820644","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-18T17:56:11.4347354Z","duration":"PT1.0150288S","correlationId":"9692a1f2-deb8-4c66-8ef9-c6439b45f98c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_y2kolHYOMaHk61ltuxlfVXwgFpk0oik9","name":"vm_deploy_y2kolHYOMaHk61ltuxlfVXwgFpk0oik9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14608157098506071158","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-15T14:10:22.6091002Z","duration":"PT4.0159898S","correlationId":"52891821-df9f-4fe0-8af7-106a24a0d125","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"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_eYu2HoYObm1EriCgRMuazgnJ6PILOIuV/operationStatuses/08585932927150579278?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_y2kolHYOMaHk61ltuxlfVXwgFpk0oik9/operationStatuses/08585908870668845329?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -1523,20 +309,106 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:56:11 GMT + - Fri, 15 Jan 2021 14:10:24 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: + - 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870668845329?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: + - Fri, 15 Jan 2021 14:10:56 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: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870668845329?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: + - Fri, 15 Jan 2021 14:11:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1551,10 +423,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932927150579278?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870668845329?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1566,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:56:41 GMT + - Fri, 15 Jan 2021 14:11:56 GMT expires: - '-1' pragma: @@ -1594,10 +466,10 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932927150579278?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585908870668845329?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1609,7 +481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:12 GMT + - Fri, 15 Jan 2021 14:12:27 GMT expires: - '-1' pragma: @@ -1637,22 +509,22 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 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_eYu2HoYObm1EriCgRMuazgnJ6PILOIuV","name":"vm_deploy_eYu2HoYObm1EriCgRMuazgnJ6PILOIuV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10784799506879820644","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-18T17:57:00.7573761Z","duration":"PT50.3376695S","correlationId":"9692a1f2-deb8-4c66-8ef9-c6439b45f98c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"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"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_y2kolHYOMaHk61ltuxlfVXwgFpk0oik9","name":"vm_deploy_y2kolHYOMaHk61ltuxlfVXwgFpk0oik9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14608157098506071158","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-15T14:12:24.6735238Z","duration":"PT2M6.0804134S","correlationId":"52891821-df9f-4fe0-8af7-106a24a0d125","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"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: - - '4051' + - '4052' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:12 GMT + - Fri, 15 Jan 2021 14:12:28 GMT expires: - '-1' pragma: @@ -1680,7 +552,7 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1689,16 +561,16 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\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\": \"41363911-9146-41ef-a670-d6f4f7881707\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"23a2e20e-02b3-4b78-8bdb-044e8a8a078e\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_57510f60ca3145bd94334085c2ea93c0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\",\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_disk1_57510f60ca3145bd94334085c2ea93c0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\"\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\": @@ -1712,16 +584,16 @@ interactions: \ {\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\": \"2020-12-18T17:57:14+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-15T14:12:29+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_57510f60ca3145bd94334085c2ea93c0\",\r\n \"statuses\": + \"clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T17:56:31.1731354+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-15T14:11:01.4832662+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T17:56:58.065002+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:12:22.6246314+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}" @@ -1729,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '3441' + - '3421' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:14 GMT + - Fri, 15 Jan 2021 14:12:28 GMT expires: - '-1' pragma: @@ -1750,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997 status: code: 200 message: OK @@ -1758,7 +630,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1768,23 +640,20 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"13585a66-8f4d-4d29-a5f9-2e3c953222c4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"db1765c4-1934-47d0-a62f-899cf6c6828b\\\"\",\r\n \"location\": \"westus\",\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\": \"18e34f3d-b843-4df2-b7e6-94d5d26bbd53\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c5b12366-6b09-430b-b429-0d34f6120870\",\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/\\\"13585a66-8f4d-4d29-a5f9-2e3c953222c4\\\"\",\r\n + \ \"etag\": \"W/\\\"db1765c4-1934-47d0-a62f-899cf6c6828b\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1793,8 +662,8 @@ interactions: \ },\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\": - \"rjcye5qfzrte1kpe4alcvhyd4b.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-CA-D4\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"nhgwo1u2gy5ejo1yfffaqbjvvg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-96-10\",\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\": @@ -1808,9 +677,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:13 GMT + - Fri, 15 Jan 2021 14:12:29 GMT etag: - - W/"13585a66-8f4d-4d29-a5f9-2e3c953222c4" + - W/"db1765c4-1934-47d0-a62f-899cf6c6828b" expires: - '-1' pragma: @@ -1827,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98228e02-ac21-43fa-b98a-0b41790eec59 + - 65eb3eaf-22bd-441d-9cb7-c0a9cd752789 status: code: 200 message: OK @@ -1835,7 +704,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1845,21 +714,18 @@ interactions: ParameterSetName: - -n -g --image --admin-username --admin-password --tags --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.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/\\\"4308dc62-2c1c-49a2-a035-842270b6ec44\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cd96977e-ae33-450c-a7a1-5435c3f23ace\\\"\",\r\n \"location\": \"westus\",\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\": \"7d39f915-95d5-4fda-8d0a-d1ade63eb775\",\r\n - \ \"ipAddress\": \"104.210.41.133\",\r\n \"publicIPAddressVersion\": + \"Succeeded\",\r\n \"resourceGuid\": \"02b79d12-d9e7-4ec9-bb21-d342a56f86ed\",\r\n + \ \"ipAddress\": \"104.210.49.227\",\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 @@ -1872,9 +738,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:14 GMT + - Fri, 15 Jan 2021 14:12:29 GMT etag: - - W/"4308dc62-2c1c-49a2-a035-842270b6ec44" + - W/"cd96977e-ae33-450c-a7a1-5435c3f23ace" expires: - '-1' pragma: @@ -1891,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c23c4808-6aa2-4b8d-86ad-bdfb5c621984 + - c6679995-a79c-45f4-863d-68df5cb28b1c status: code: 200 message: OK @@ -1909,7 +775,7 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/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.Compute/virtualMachines/clitest-vm000003?$expand=instanceView&api-version=2020-06-01 response: @@ -1918,16 +784,16 @@ interactions: \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\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\": \"41363911-9146-41ef-a670-d6f4f7881707\",\r\n + \"No\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"23a2e20e-02b3-4b78-8bdb-044e8a8a078e\",\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.19893.2012051546\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Windows\",\r\n \"name\": \"clitest-vm000003_disk1_57510f60ca3145bd94334085c2ea93c0\",\r\n + \"Windows\",\r\n \"name\": \"clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\",\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_disk1_57510f60ca3145bd94334085c2ea93c0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\"\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\": @@ -1938,304 +804,51 @@ interactions: {\"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\": \"2020-12-18T17:57:15+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"clitest-vm000003_disk1_57510f60ca3145bd94334085c2ea93c0\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-18T17:56:31.1731354+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-18T17:56:58.065002+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: - - '3441' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Dec 2020 17:57:14 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;3995,Microsoft.Compute/LowCostGet30Min;31995 - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - 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":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2020-12-18T17%3A56%3A07.0646856Z''\"","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: - - '532' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 17:57: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 - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2019-06-15 - 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":["2020-12-19T03:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-12-19T03: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: - - Fri, 18 Dec 2020 17:57: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 17:57: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.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=2016-12-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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Dec 2020 17:57: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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 - response: - body: - string: '' + \ {\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-01-15T14:12:30+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"clitest-vm000003_OsDisk_1_0a34ef6a935443b686c183843f77eb51\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-01-15T14:11:01.4832662+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-01-15T14:12:22.6246314+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: - - '0' + - '3421' + content-type: + - application/json; charset=utf-8 date: - - Fri, 18 Dec 2020 17:57:19 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 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-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2250,39 +863,41 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + 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: '' + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-15T14%3A10%3A11.8427402Z''\"","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: - - '0' + - '532' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:57:20 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-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-powered-by: - - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2297,39 +912,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '' + 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-01-16T00:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-01-16T00:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '0' + - '828' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:57:21 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-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: - - '147' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2344,39 +965,45 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema/protectableItems/vm;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema","name":"iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5/providers/Microsoft.Compute/virtualMachines/clitest-akneema","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-akneema","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm/protectableItems/vm;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm","name":"iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5/providers/Microsoft.Compute/virtualMachines/clitest-sqlwshm","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-sqlwshm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23","name":"iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaCRRRVM23","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaCRRRVM23","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagacrrvm/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagacrrvm","name":"iaasvmcontainerv2;hiagawus-rg;hiagacrrvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaCRRvm","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaCRRvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavm234/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavm234","name":"iaasvmcontainerv2;hiagawus-rg;hiagavm234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVM234","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVM234","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavm824/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavm824","name":"iaasvmcontainerv2;hiagawus-rg;hiagavm824","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVM824","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVM824","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23","name":"iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVMCRR23","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVMCRR23","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24","name":"iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVMCRR24","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVMCRR24","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;testvm/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;testvm","name":"iaasvmcontainerv2;hiagawus-rg;testvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/testVm","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testVm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '8951' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:57:23 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-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: - - '146' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2388,37 +1015,41 @@ interactions: - backup protection enable-for-vm Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + 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=2020-10-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/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:57:24 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -2438,12 +1069,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: string: '' @@ -2453,11 +1084,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 17:57:26 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2465,7 +1096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -2485,12 +1116,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: string: '' @@ -2500,11 +1131,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 17:57:27 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2512,7 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -2532,12 +1163,12 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: string: '' @@ -2547,11 +1178,11 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 17:57:29 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2559,7 +1190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '147' x-powered-by: - ASP.NET status: @@ -2579,22 +1210,26 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/3859e263-bbae-4798-acaf-dba80b21146c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Fri, 18 Dec 2020 17:57:30 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2602,12 +1237,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '146' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -2622,49 +1257,41 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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/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"}}]}' + string: '' headers: cache-control: - no-cache content-length: - - '1271' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:57:31 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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: - - '149' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - 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"}}' + body: null headers: Accept: - application/json @@ -2674,43 +1301,37 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2019-06-15 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:57:32 GMT + - Fri, 15 Jan 2021 14:12: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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -2730,45 +1351,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:57:33 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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: - - '149' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2783,45 +1398,39 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:57:35 GMT + - Fri, 15 Jan 2021 14:12: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/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-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' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2836,45 +1445,35 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/aee9b4c3-f49b-4221-bf29-c91015ed117c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' - content-type: - - application/json date: - - Fri, 18 Dec 2020 17:57:36 GMT + - Fri, 15 Jan 2021 14:12: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: - - '147' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -2889,24 +1488,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + 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/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;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema/protectableItems/vm;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema","name":"iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-akneema","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5/providers/Microsoft.Compute/virtualMachines/clitest-akneema","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-akneema","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm/protectableItems/vm;iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm","name":"iaasvmcontainerv2;clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5;clitest-sqlwshm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5/providers/Microsoft.Compute/virtualMachines/clitest-sqlwshm","virtualMachineVersion":"Compute","resourceGroup":"clitest.rgnsbkvmozkgtdi7fps5vn2uaea4rzguu52m63tewf2jswlp3avx2psfb47lchxf4y5","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"clitest-sqlwshm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23","name":"iaasvmcontainerv2;hiagawus-rg;hiagacrrrvm23","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaCRRRVM23","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaCRRRVM23","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagacrrvm/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagacrrvm","name":"iaasvmcontainerv2;hiagawus-rg;hiagacrrvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaCRRvm","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaCRRvm","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavm234/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavm234","name":"iaasvmcontainerv2;hiagawus-rg;hiagavm234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVM234","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVM234","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavm824/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavm824","name":"iaasvmcontainerv2;hiagawus-rg;hiagavm824","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVM824","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVM824","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23","name":"iaasvmcontainerv2;hiagawus-rg;hiagavmcrr23","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVMCRR23","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVMCRR23","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24","name":"iaasvmcontainerv2;hiagawus-rg;hiagavmcrr24","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/hiagaVMCRR24","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"hiagaVMCRR24","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;hiagawus-rg;testvm/protectableItems/vm;iaasvmcontainerv2;hiagawus-rg;testvm","name":"iaasvmcontainerv2;hiagawus-rg;testvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"virtualMachineId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.Compute/virtualMachines/testVm","virtualMachineVersion":"Compute","resourceGroup":"hiagawus-rg","backupManagementType":"AzureIaasVM","protectableItemType":"Microsoft.Compute/virtualMachines","friendlyName":"testVm","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '10211' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:37 GMT + - Fri, 15 Jan 2021 14:12:50 GMT expires: - '-1' pragma: @@ -2922,14 +1521,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + 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 @@ -2939,48 +1540,48 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + 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/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:57:39 GMT + - Fri, 15 Jan 2021 14:12: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/vm;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-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: - - '145' + 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: @@ -2995,24 +1596,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:40 GMT + - Fri, 15 Jan 2021 14:12:51 GMT expires: - '-1' pragma: @@ -3028,7 +1629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -3048,24 +1649,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:41 GMT + - Fri, 15 Jan 2021 14:12:54 GMT expires: - '-1' pragma: @@ -3081,7 +1682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -3101,24 +1702,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:43 GMT + - Fri, 15 Jan 2021 14:12:55 GMT expires: - '-1' pragma: @@ -3134,7 +1735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '147' x-powered-by: - ASP.NET status: @@ -3154,24 +1755,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:44 GMT + - Fri, 15 Jan 2021 14:12:57 GMT expires: - '-1' pragma: @@ -3187,7 +1788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '146' x-powered-by: - ASP.NET status: @@ -3207,24 +1808,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:45 GMT + - Fri, 15 Jan 2021 14:12:58 GMT expires: - '-1' pragma: @@ -3240,7 +1841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '145' x-powered-by: - ASP.NET status: @@ -3260,24 +1861,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:47 GMT + - Fri, 15 Jan 2021 14:12:59 GMT expires: - '-1' pragma: @@ -3293,7 +1894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '144' x-powered-by: - ASP.NET status: @@ -3313,24 +1914,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:49 GMT + - Fri, 15 Jan 2021 14:13:01 GMT expires: - '-1' pragma: @@ -3346,7 +1947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '143' x-powered-by: - ASP.NET status: @@ -3366,24 +1967,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:50 GMT + - Fri, 15 Jan 2021 14:13:02 GMT expires: - '-1' pragma: @@ -3399,7 +2000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '142' x-powered-by: - ASP.NET status: @@ -3419,24 +2020,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:51 GMT + - Fri, 15 Jan 2021 14:13:04 GMT expires: - '-1' pragma: @@ -3452,7 +2053,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '141' x-powered-by: - ASP.NET status: @@ -3472,24 +2073,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:53 GMT + - Fri, 15 Jan 2021 14:13:05 GMT expires: - '-1' pragma: @@ -3505,7 +2106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '140' x-powered-by: - ASP.NET status: @@ -3525,24 +2126,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:54 GMT + - Fri, 15 Jan 2021 14:13:07 GMT expires: - '-1' pragma: @@ -3558,7 +2159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '139' x-powered-by: - ASP.NET status: @@ -3578,24 +2179,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:56 GMT + - Fri, 15 Jan 2021 14:13:08 GMT expires: - '-1' pragma: @@ -3611,7 +2212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '138' x-powered-by: - ASP.NET status: @@ -3631,24 +2232,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:57 GMT + - Fri, 15 Jan 2021 14:13:10 GMT expires: - '-1' pragma: @@ -3664,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '137' x-powered-by: - ASP.NET status: @@ -3684,24 +2285,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:57:58 GMT + - Fri, 15 Jan 2021 14:13:11 GMT expires: - '-1' pragma: @@ -3717,7 +2318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '136' x-powered-by: - ASP.NET status: @@ -3737,24 +2338,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:00 GMT + - Fri, 15 Jan 2021 14:13:13 GMT expires: - '-1' pragma: @@ -3770,7 +2371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '135' x-powered-by: - ASP.NET status: @@ -3790,24 +2391,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:01 GMT + - Fri, 15 Jan 2021 14:13:14 GMT expires: - '-1' pragma: @@ -3823,7 +2424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '134' x-powered-by: - ASP.NET status: @@ -3843,24 +2444,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:02 GMT + - Fri, 15 Jan 2021 14:13:15 GMT expires: - '-1' pragma: @@ -3876,7 +2477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '133' x-powered-by: - ASP.NET status: @@ -3896,24 +2497,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:04 GMT + - Fri, 15 Jan 2021 14:13:17 GMT expires: - '-1' pragma: @@ -3929,7 +2530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '132' x-powered-by: - ASP.NET status: @@ -3949,24 +2550,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:05 GMT + - Fri, 15 Jan 2021 14:13:18 GMT expires: - '-1' pragma: @@ -3982,7 +2583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '131' x-powered-by: - ASP.NET status: @@ -4002,24 +2603,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:06 GMT + - Fri, 15 Jan 2021 14:13:20 GMT expires: - '-1' pragma: @@ -4035,7 +2636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '130' x-powered-by: - ASP.NET status: @@ -4055,24 +2656,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:08 GMT + - Fri, 15 Jan 2021 14:13:21 GMT expires: - '-1' pragma: @@ -4088,7 +2689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '129' x-powered-by: - ASP.NET status: @@ -4108,24 +2709,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:09 GMT + - Fri, 15 Jan 2021 14:13:23 GMT expires: - '-1' pragma: @@ -4141,7 +2742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '128' x-powered-by: - ASP.NET status: @@ -4161,24 +2762,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:10 GMT + - Fri, 15 Jan 2021 14:13:24 GMT expires: - '-1' pragma: @@ -4194,7 +2795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '127' x-powered-by: - ASP.NET status: @@ -4214,24 +2815,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:12 GMT + - Fri, 15 Jan 2021 14:13:26 GMT expires: - '-1' pragma: @@ -4247,7 +2848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '126' x-powered-by: - ASP.NET status: @@ -4267,24 +2868,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:13 GMT + - Fri, 15 Jan 2021 14:13:27 GMT expires: - '-1' pragma: @@ -4300,7 +2901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '125' x-powered-by: - ASP.NET status: @@ -4320,24 +2921,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:15 GMT + - Fri, 15 Jan 2021 14:13:29 GMT expires: - '-1' pragma: @@ -4353,7 +2954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '124' x-powered-by: - ASP.NET status: @@ -4373,24 +2974,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:16 GMT + - Fri, 15 Jan 2021 14:13:30 GMT expires: - '-1' pragma: @@ -4406,7 +3007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '123' x-powered-by: - ASP.NET status: @@ -4426,24 +3027,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:17 GMT + - Fri, 15 Jan 2021 14:13:32 GMT expires: - '-1' pragma: @@ -4459,7 +3060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '122' x-powered-by: - ASP.NET status: @@ -4479,24 +3080,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:19 GMT + - Fri, 15 Jan 2021 14:13:33 GMT expires: - '-1' pragma: @@ -4512,7 +3113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '121' x-powered-by: - ASP.NET status: @@ -4532,24 +3133,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:20 GMT + - Fri, 15 Jan 2021 14:13:34 GMT expires: - '-1' pragma: @@ -4565,7 +3166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '120' x-powered-by: - ASP.NET status: @@ -4585,24 +3186,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:21 GMT + - Fri, 15 Jan 2021 14:13:36 GMT expires: - '-1' pragma: @@ -4618,7 +3219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '119' x-powered-by: - ASP.NET status: @@ -4638,24 +3239,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:23 GMT + - Fri, 15 Jan 2021 14:13:37 GMT expires: - '-1' pragma: @@ -4671,7 +3272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '118' x-powered-by: - ASP.NET status: @@ -4691,24 +3292,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:24 GMT + - Fri, 15 Jan 2021 14:13:39 GMT expires: - '-1' pragma: @@ -4724,7 +3325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '117' x-powered-by: - ASP.NET status: @@ -4744,24 +3345,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:25 GMT + - Fri, 15 Jan 2021 14:13:40 GMT expires: - '-1' pragma: @@ -4777,7 +3378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '116' x-powered-by: - ASP.NET status: @@ -4797,24 +3398,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:27 GMT + - Fri, 15 Jan 2021 14:13:42 GMT expires: - '-1' pragma: @@ -4830,7 +3431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '115' x-powered-by: - ASP.NET status: @@ -4850,24 +3451,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:28 GMT + - Fri, 15 Jan 2021 14:13:43 GMT expires: - '-1' pragma: @@ -4883,7 +3484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '114' x-powered-by: - ASP.NET status: @@ -4903,24 +3504,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:29 GMT + - Fri, 15 Jan 2021 14:13:45 GMT expires: - '-1' pragma: @@ -4936,7 +3537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '113' x-powered-by: - ASP.NET status: @@ -4956,24 +3557,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:31 GMT + - Fri, 15 Jan 2021 14:13:46 GMT expires: - '-1' pragma: @@ -4989,7 +3590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '112' x-powered-by: - ASP.NET status: @@ -5009,24 +3610,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:32 GMT + - Fri, 15 Jan 2021 14:13:48 GMT expires: - '-1' pragma: @@ -5042,7 +3643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '111' x-powered-by: - ASP.NET status: @@ -5062,24 +3663,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:33 GMT + - Fri, 15 Jan 2021 14:13:49 GMT expires: - '-1' pragma: @@ -5095,7 +3696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '110' x-powered-by: - ASP.NET status: @@ -5115,24 +3716,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:35 GMT + - Fri, 15 Jan 2021 14:13:50 GMT expires: - '-1' pragma: @@ -5148,7 +3749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '109' x-powered-by: - ASP.NET status: @@ -5168,24 +3769,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:36 GMT + - Fri, 15 Jan 2021 14:13:52 GMT expires: - '-1' pragma: @@ -5201,7 +3802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '108' x-powered-by: - ASP.NET status: @@ -5221,24 +3822,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:38 GMT + - Fri, 15 Jan 2021 14:13:54 GMT expires: - '-1' pragma: @@ -5254,7 +3855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '107' x-powered-by: - ASP.NET status: @@ -5274,24 +3875,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:39 GMT + - Fri, 15 Jan 2021 14:13:55 GMT expires: - '-1' pragma: @@ -5307,7 +3908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '106' x-powered-by: - ASP.NET status: @@ -5327,24 +3928,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:41 GMT + - Fri, 15 Jan 2021 14:13:56 GMT expires: - '-1' pragma: @@ -5360,7 +3961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '105' x-powered-by: - ASP.NET status: @@ -5380,24 +3981,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:42 GMT + - Fri, 15 Jan 2021 14:13:58 GMT expires: - '-1' pragma: @@ -5413,7 +4014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '104' x-powered-by: - ASP.NET status: @@ -5433,24 +4034,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:43 GMT + - Fri, 15 Jan 2021 14:13:59 GMT expires: - '-1' pragma: @@ -5466,7 +4067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '103' x-powered-by: - ASP.NET status: @@ -5486,24 +4087,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:45 GMT + - Fri, 15 Jan 2021 14:14:01 GMT expires: - '-1' pragma: @@ -5519,7 +4120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '102' x-powered-by: - ASP.NET status: @@ -5539,24 +4140,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:46 GMT + - Fri, 15 Jan 2021 14:14:02 GMT expires: - '-1' pragma: @@ -5572,7 +4173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '101' x-powered-by: - ASP.NET status: @@ -5592,24 +4193,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:48 GMT + - Fri, 15 Jan 2021 14:14:04 GMT expires: - '-1' pragma: @@ -5625,7 +4226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '100' x-powered-by: - ASP.NET status: @@ -5645,24 +4246,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:49 GMT + - Fri, 15 Jan 2021 14:14:05 GMT expires: - '-1' pragma: @@ -5678,7 +4279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '99' x-powered-by: - ASP.NET status: @@ -5698,24 +4299,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:50 GMT + - Fri, 15 Jan 2021 14:14:07 GMT expires: - '-1' pragma: @@ -5731,7 +4332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '98' x-powered-by: - ASP.NET status: @@ -5751,24 +4352,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:53 GMT + - Fri, 15 Jan 2021 14:14:08 GMT expires: - '-1' pragma: @@ -5784,7 +4385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '97' x-powered-by: - ASP.NET status: @@ -5804,24 +4405,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:54 GMT + - Fri, 15 Jan 2021 14:14:09 GMT expires: - '-1' pragma: @@ -5837,7 +4438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '96' x-powered-by: - ASP.NET status: @@ -5857,24 +4458,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:56 GMT + - Fri, 15 Jan 2021 14:14:11 GMT expires: - '-1' pragma: @@ -5890,7 +4491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '95' x-powered-by: - ASP.NET status: @@ -5910,24 +4511,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:57 GMT + - Fri, 15 Jan 2021 14:14:12 GMT expires: - '-1' pragma: @@ -5943,7 +4544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '94' x-powered-by: - ASP.NET status: @@ -5963,24 +4564,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:58:58 GMT + - Fri, 15 Jan 2021 14:14:14 GMT expires: - '-1' pragma: @@ -5996,7 +4597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '93' x-powered-by: - ASP.NET status: @@ -6016,24 +4617,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:00 GMT + - Fri, 15 Jan 2021 14:14:15 GMT expires: - '-1' pragma: @@ -6049,7 +4650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '92' x-powered-by: - ASP.NET status: @@ -6069,24 +4670,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:01 GMT + - Fri, 15 Jan 2021 14:14:17 GMT expires: - '-1' pragma: @@ -6102,7 +4703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '91' x-powered-by: - ASP.NET status: @@ -6122,24 +4723,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:02 GMT + - Fri, 15 Jan 2021 14:14:18 GMT expires: - '-1' pragma: @@ -6155,7 +4756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '90' x-powered-by: - ASP.NET status: @@ -6175,24 +4776,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"InProgress","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:04 GMT + - Fri, 15 Jan 2021 14:14:20 GMT expires: - '-1' pragma: @@ -6208,7 +4809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '89' x-powered-by: - ASP.NET status: @@ -6228,24 +4829,24 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/63d1e970-cd9e-4eaf-9672-a188caa44898?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"63d1e970-cd9e-4eaf-9672-a188caa44898","name":"63d1e970-cd9e-4eaf-9672-a188caa44898","status":"Succeeded","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"2020-12-18T17:57:33.2921998Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0cd800c2-fba9-47a6-b71d-0f9bc3041f8b"}}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:05 GMT + - Fri, 15 Jan 2021 14:14:21 GMT expires: - '-1' pragma: @@ -6261,7 +4862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '88' x-powered-by: - ASP.NET status: @@ -6281,32 +4882,30 @@ interactions: ParameterSetName: - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/0cd800c2-fba9-47a6-b71d-0f9bc3041f8b?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd800c2-fba9-47a6-b71d-0f9bc3041f8b","name":"0cd800c2-fba9-47a6-b71d-0f9bc3041f8b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.7983594S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2020-12-18T17:57:33.2921998Z","endTime":"2020-12-18T17:59:05.0905592Z","activityId":"759ed732-415a-11eb-9423-c03eba45757e"}}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"InProgress","startTime":"2021-01-15T14:12:51.922839Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '970' + - '187' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:06 GMT + - Fri, 15 Jan 2021 14:14: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: @@ -6316,7 +4915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '87' x-powered-by: - ASP.NET status: @@ -6330,31 +4929,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-vm Connection: - keep-alive ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9a11a3a8-310b-4fc1-8cee-311e2c5c835c?api-version=2020-10-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","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":"334252804139181","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"}}]}' + string: '{"id":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","name":"9a11a3a8-310b-4fc1-8cee-311e2c5c835c","status":"Succeeded","startTime":"2021-01-15T14:12:51.922839Z","endTime":"2021-01-15T14:12:51.922839Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1f4a6b8e-eefc-49cd-be0a-635e9f74470b"}}' headers: cache-control: - no-cache content-length: - - '1964' + - '302' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:07 GMT + - Fri, 15 Jan 2021 14:14:24 GMT expires: - '-1' pragma: @@ -6370,7 +4968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '85' x-powered-by: - ASP.NET status: @@ -6384,50 +4982,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-vm Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --backup-management-type --workload-type -g -v -c -i --delete-backup-data - --yes + - -g -v --vm -p User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1f4a6b8e-eefc-49cd-be0a-635e9f74470b?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1f4a6b8e-eefc-49cd-be0a-635e9f74470b","name":"1f4a6b8e-eefc-49cd-be0a-635e9f74470b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M31.9014573S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Policy Name":"DefaultPolicy"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T14:12:51.922839Z","endTime":"2021-01-15T14:14:23.8242963Z","activityId":"b40a1f76-573b-11eb-b449-c8f750f92764"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2019-06-15 cache-control: - no-cache content-length: - - '0' + - '969' + content-type: + - application/json date: - - Fri, 18 Dec 2020 17:59:08 GMT + - Fri, 15 Jan 2021 14:14:25 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2019-06-15 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6443,24 +5044,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + 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":"1023024844","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"}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '1959' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:09 GMT + - Fri, 15 Jan 2021 14:14:25 GMT expires: - '-1' pragma: @@ -6476,7 +5077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6493,49 +5094,47 @@ interactions: - 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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + 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=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Fri, 18 Dec 2020 17:59:10 GMT + - Fri, 15 Jan 2021 14:14:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6551,24 +5150,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:11 GMT + - Fri, 15 Jan 2021 14:14:29 GMT expires: - '-1' pragma: @@ -6584,7 +5183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -6605,24 +5204,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:13 GMT + - Fri, 15 Jan 2021 14:14:31 GMT expires: - '-1' pragma: @@ -6638,7 +5237,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -6659,24 +5258,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:14 GMT + - Fri, 15 Jan 2021 14:14:32 GMT expires: - '-1' pragma: @@ -6692,7 +5291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: @@ -6713,24 +5312,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:16 GMT + - Fri, 15 Jan 2021 14:14:34 GMT expires: - '-1' pragma: @@ -6746,7 +5345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '146' x-powered-by: - ASP.NET status: @@ -6767,24 +5366,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:17 GMT + - Fri, 15 Jan 2021 14:14:35 GMT expires: - '-1' pragma: @@ -6800,7 +5399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '145' x-powered-by: - ASP.NET status: @@ -6821,24 +5420,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"InProgress","startTime":"2020-12-18T17:59:08.608699Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"InProgress","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:19 GMT + - Fri, 15 Jan 2021 14:14:37 GMT expires: - '-1' pragma: @@ -6854,7 +5453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '144' x-powered-by: - ASP.NET status: @@ -6875,24 +5474,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/7d2f0d6e-0900-457d-a387-1dc185b3ff84?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9400adc6-54ce-4860-9070-04eaac6ba7f2?api-version=2020-10-01 response: body: - string: '{"id":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","name":"7d2f0d6e-0900-457d-a387-1dc185b3ff84","status":"Succeeded","startTime":"2020-12-18T17:59:08.608699Z","endTime":"2020-12-18T17:59:08.608699Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8129b55b-7d88-4fa6-ad7a-abf083adcb45"}}' + string: '{"id":"9400adc6-54ce-4860-9070-04eaac6ba7f2","name":"9400adc6-54ce-4860-9070-04eaac6ba7f2","status":"Succeeded","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"2021-01-15T14:14:27.2996569Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0b4bc307-9e27-43fe-a40c-3fc1aa11ebf9"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:20 GMT + - Fri, 15 Jan 2021 14:14:38 GMT expires: - '-1' pragma: @@ -6908,7 +5507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '143' x-powered-by: - ASP.NET status: @@ -6929,25 +5528,25 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/8129b55b-7d88-4fa6-ad7a-abf083adcb45?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b4bc307-9e27-43fe-a40c-3fc1aa11ebf9?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8129b55b-7d88-4fa6-ad7a-abf083adcb45","name":"8129b55b-7d88-4fa6-ad7a-abf083adcb45","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.3109603S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T17:59:08.608699Z","endTime":"2020-12-18T17:59:19.9196593Z","activityId":"b8778dc0-415a-11eb-b4fb-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0b4bc307-9e27-43fe-a40c-3fc1aa11ebf9","name":"0b4bc307-9e27-43fe-a40c-3fc1aa11ebf9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.5176874S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:14:27.2996569Z","endTime":"2021-01-15T14:14:38.8173443Z","activityId":"f93b3027-573b-11eb-bca6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '970' + - '971' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:21 GMT + - Fri, 15 Jan 2021 14:14:40 GMT expires: - '-1' pragma: @@ -6964,7 +5563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -6984,24 +5583,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"334252804139181","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":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T17:59:08.608699Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:45.0555690"}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1023024844","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":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:14:27.2996569Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:45.8749587"}}]}' headers: cache-control: - no-cache content-length: - - '1863' + - '1859' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:23 GMT + - Fri, 15 Jan 2021 14:14:41 GMT expires: - '-1' pragma: @@ -7017,7 +5616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -7037,24 +5636,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"334252804139181","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":"","policyName":"","deferredDeleteTimeInUTC":"2020-12-18T17:59:08.608699Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:44.1559685"}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1023024844","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":"","policyName":"","deferredDeleteTimeInUTC":"2021-01-15T14:14:27.2996569Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.23:59:45.3198132"}}]}' headers: cache-control: - no-cache content-length: - - '1863' + - '1859' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:23 GMT + - Fri, 15 Jan 2021 14:14:41 GMT expires: - '-1' pragma: @@ -7070,7 +5669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '141' x-powered-by: - ASP.NET status: @@ -7096,28 +5695,28 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2019-06-15 + - 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/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:59:25 GMT + - Fri, 15 Jan 2021 14:14: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/IaasVMContainer;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/protectedItems/VM;iaasvmcontainerv2;clitest.rg000001;clitest-vm000003/operationResults/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2019-06-15 + - 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/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -7145,15 +5744,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7162,7 +5761,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:25 GMT + - Fri, 15 Jan 2021 14:14:44 GMT expires: - '-1' pragma: @@ -7198,15 +5797,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7215,7 +5814,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:26 GMT + - Fri, 15 Jan 2021 14:14:46 GMT expires: - '-1' pragma: @@ -7251,15 +5850,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7268,7 +5867,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:28 GMT + - Fri, 15 Jan 2021 14:14:47 GMT expires: - '-1' pragma: @@ -7304,15 +5903,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7321,7 +5920,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:30 GMT + - Fri, 15 Jan 2021 14:14:49 GMT expires: - '-1' pragma: @@ -7357,15 +5956,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7374,7 +5973,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:31 GMT + - Fri, 15 Jan 2021 14:14:50 GMT expires: - '-1' pragma: @@ -7410,15 +6009,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7427,7 +6026,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:33 GMT + - Fri, 15 Jan 2021 14:14:51 GMT expires: - '-1' pragma: @@ -7463,15 +6062,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"InProgress","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7480,7 +6079,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:34 GMT + - Fri, 15 Jan 2021 14:14:53 GMT expires: - '-1' pragma: @@ -7516,68 +6115,15 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 - response: - body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"InProgress","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 17: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: - - '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 undelete - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --workload-type --backup-management-type - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/9c2aff91-f163-4834-b1d4-cedd5482966c?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7d259ae9-e031-456f-b438-51a5f7ab87e7?api-version=2020-10-01 response: body: - string: '{"id":"9c2aff91-f163-4834-b1d4-cedd5482966c","name":"9c2aff91-f163-4834-b1d4-cedd5482966c","status":"Succeeded","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"2020-12-18T17:59:25.5758209Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"41b89a78-9c6c-43bd-b7e5-eda35d7833a8"}}' + string: '{"id":"7d259ae9-e031-456f-b438-51a5f7ab87e7","name":"7d259ae9-e031-456f-b438-51a5f7ab87e7","status":"Succeeded","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"2021-01-15T14:14:42.8702157Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"306fd674-1863-4924-9302-8879a3c80c5a"}}' headers: cache-control: - no-cache @@ -7586,7 +6132,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:37 GMT + - Fri, 15 Jan 2021 14:14:54 GMT expires: - '-1' pragma: @@ -7602,7 +6148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '142' x-powered-by: - ASP.NET status: @@ -7622,16 +6168,16 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --backup-management-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/41b89a78-9c6c-43bd-b7e5-eda35d7833a8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/306fd674-1863-4924-9302-8879a3c80c5a?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/41b89a78-9c6c-43bd-b7e5-eda35d7833a8","name":"41b89a78-9c6c-43bd-b7e5-eda35d7833a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.1186377S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Undelete flag":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Undelete","status":"Completed","startTime":"2020-12-18T17:59:25.5758209Z","endTime":"2020-12-18T17:59:36.6944586Z","activityId":"c26499bf-415a-11eb-9dae-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/306fd674-1863-4924-9302-8879a3c80c5a","name":"306fd674-1863-4924-9302-8879a3c80c5a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT11.2467434S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Undelete flag":"True"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"Undelete","status":"Completed","startTime":"2021-01-15T14:14:42.8702157Z","endTime":"2021-01-15T14:14:54.1169591Z","activityId":"026fc43a-573c-11eb-954e-c8f750f92764"}}' headers: cache-control: - no-cache @@ -7640,7 +6186,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:38 GMT + - Fri, 15 Jan 2021 14:14:56 GMT expires: - '-1' pragma: @@ -7677,12 +6223,12 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -7694,7 +6240,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:39 GMT + - Fri, 15 Jan 2021 14:14:57 GMT expires: - '-1' pragma: @@ -7735,12 +6281,12 @@ interactions: ParameterSetName: - -g -n --soft-delete-feature-state User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -7752,7 +6298,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:40 GMT + - Fri, 15 Jan 2021 14:14:58 GMT expires: - '-1' pragma: @@ -7768,7 +6314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -7788,24 +6334,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c -n User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"334252804139181","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":"","policyName":""}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1023024844","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":"","policyName":""}}]}' headers: cache-control: - no-cache content-length: - - '1719' + - '1714' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:41 GMT + - Fri, 15 Jan 2021 14:14:58 GMT expires: - '-1' pragma: @@ -7821,7 +6367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -7841,12 +6387,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-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"}}]}' @@ -7858,7 +6404,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:42 GMT + - Fri, 15 Jan 2021 14:14:59 GMT expires: - '-1' pragma: @@ -7894,24 +6440,24 @@ interactions: ParameterSetName: - --backup-management-type --workload-type -g -v -c --query User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"334252804139181","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":"","policyName":""}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1023024844","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":"","policyName":""}}]}' headers: cache-control: - no-cache content-length: - - '1719' + - '1714' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:42 GMT + - Fri, 15 Jan 2021 14:14:59 GMT expires: - '-1' pragma: @@ -7927,7 +6473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -7948,24 +6494,24 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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=2019-06-15&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20itemType%20eq%20%27VM%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"334252804139181","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":"","policyName":""}}]}' + 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":"ProtectionStopped","healthStatus":"Passed","lastBackupStatus":"","lastBackupTime":"2001-01-01T00:00:00Z","protectedItemDataId":"1023024844","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":"","policyName":""}}]}' headers: cache-control: - no-cache content-length: - - '1719' + - '1714' content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:43 GMT + - Fri, 15 Jan 2021 14:15:01 GMT expires: - '-1' pragma: @@ -7981,7 +6527,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: @@ -8004,28 +6550,28 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2019-06-15 + 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=2020-10-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/18da1824-6703-485c-a661-f6579e88d681?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Dec 2020 17:59:45 GMT + - Fri, 15 Jan 2021 14:15:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/18da1824-6703-485c-a661-f6579e88d681?api-version=2019-06-15 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -8054,69 +6600,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 - response: - body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Fri, 18 Dec 2020 17: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: - - '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.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8125,7 +6617,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:47 GMT + - Fri, 15 Jan 2021 14:15:02 GMT expires: - '-1' pragma: @@ -8141,7 +6633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '79' x-powered-by: - ASP.NET status: @@ -8162,15 +6654,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8179,7 +6671,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:49 GMT + - Fri, 15 Jan 2021 14:15:04 GMT expires: - '-1' pragma: @@ -8195,7 +6687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '78' x-powered-by: - ASP.NET status: @@ -8216,15 +6708,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8233,7 +6725,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:51 GMT + - Fri, 15 Jan 2021 14:15:05 GMT expires: - '-1' pragma: @@ -8249,7 +6741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '77' x-powered-by: - ASP.NET status: @@ -8270,15 +6762,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8287,7 +6779,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:52 GMT + - Fri, 15 Jan 2021 14:15:07 GMT expires: - '-1' pragma: @@ -8303,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '76' x-powered-by: - ASP.NET status: @@ -8324,15 +6816,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8341,7 +6833,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:53 GMT + - Fri, 15 Jan 2021 14:15:08 GMT expires: - '-1' pragma: @@ -8357,7 +6849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '75' x-powered-by: - ASP.NET status: @@ -8378,15 +6870,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8395,7 +6887,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:55 GMT + - Fri, 15 Jan 2021 14:15:09 GMT expires: - '-1' pragma: @@ -8411,7 +6903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '74' x-powered-by: - ASP.NET status: @@ -8432,15 +6924,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8449,7 +6941,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:56 GMT + - Fri, 15 Jan 2021 14:15:11 GMT expires: - '-1' pragma: @@ -8465,7 +6957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '73' x-powered-by: - ASP.NET status: @@ -8486,15 +6978,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8503,7 +6995,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 17:59:58 GMT + - Fri, 15 Jan 2021 14:15:12 GMT expires: - '-1' pragma: @@ -8519,7 +7011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '72' x-powered-by: - ASP.NET status: @@ -8540,15 +7032,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8557,7 +7049,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:00 GMT + - Fri, 15 Jan 2021 14:15:14 GMT expires: - '-1' pragma: @@ -8573,7 +7065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '71' x-powered-by: - ASP.NET status: @@ -8594,15 +7086,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8611,7 +7103,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:01 GMT + - Fri, 15 Jan 2021 14:15:15 GMT expires: - '-1' pragma: @@ -8627,7 +7119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '70' x-powered-by: - ASP.NET status: @@ -8648,15 +7140,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8665,7 +7157,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:03 GMT + - Fri, 15 Jan 2021 14:15:17 GMT expires: - '-1' pragma: @@ -8681,7 +7173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '69' x-powered-by: - ASP.NET status: @@ -8702,15 +7194,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8719,7 +7211,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:04 GMT + - Fri, 15 Jan 2021 14:15:18 GMT expires: - '-1' pragma: @@ -8735,7 +7227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '68' x-powered-by: - ASP.NET status: @@ -8756,15 +7248,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8773,7 +7265,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:06 GMT + - Fri, 15 Jan 2021 14:15:20 GMT expires: - '-1' pragma: @@ -8789,7 +7281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '67' x-powered-by: - ASP.NET status: @@ -8810,15 +7302,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8827,7 +7319,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:07 GMT + - Fri, 15 Jan 2021 14:15:21 GMT expires: - '-1' pragma: @@ -8843,7 +7335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '66' x-powered-by: - ASP.NET status: @@ -8864,15 +7356,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8881,7 +7373,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:08 GMT + - Fri, 15 Jan 2021 14:15:23 GMT expires: - '-1' pragma: @@ -8897,7 +7389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '65' x-powered-by: - ASP.NET status: @@ -8918,15 +7410,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8935,7 +7427,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:10 GMT + - Fri, 15 Jan 2021 14:15:24 GMT expires: - '-1' pragma: @@ -8951,7 +7443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '64' x-powered-by: - ASP.NET status: @@ -8972,15 +7464,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8989,7 +7481,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:11 GMT + - Fri, 15 Jan 2021 14:15:26 GMT expires: - '-1' pragma: @@ -9005,7 +7497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '63' x-powered-by: - ASP.NET status: @@ -9026,15 +7518,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9043,7 +7535,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:13 GMT + - Fri, 15 Jan 2021 14:15:27 GMT expires: - '-1' pragma: @@ -9059,7 +7551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '62' x-powered-by: - ASP.NET status: @@ -9080,15 +7572,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9097,7 +7589,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:14 GMT + - Fri, 15 Jan 2021 14:15:29 GMT expires: - '-1' pragma: @@ -9113,7 +7605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '61' x-powered-by: - ASP.NET status: @@ -9134,15 +7626,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9151,7 +7643,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:16 GMT + - Fri, 15 Jan 2021 14:15:30 GMT expires: - '-1' pragma: @@ -9167,7 +7659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '60' x-powered-by: - ASP.NET status: @@ -9188,15 +7680,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9205,7 +7697,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:17 GMT + - Fri, 15 Jan 2021 14:15:32 GMT expires: - '-1' pragma: @@ -9221,7 +7713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '59' x-powered-by: - ASP.NET status: @@ -9242,15 +7734,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9259,7 +7751,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:18 GMT + - Fri, 15 Jan 2021 14:15:33 GMT expires: - '-1' pragma: @@ -9275,7 +7767,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '58' x-powered-by: - ASP.NET status: @@ -9296,15 +7788,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9313,7 +7805,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:20 GMT + - Fri, 15 Jan 2021 14:15:35 GMT expires: - '-1' pragma: @@ -9329,7 +7821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '57' x-powered-by: - ASP.NET status: @@ -9350,15 +7842,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9367,7 +7859,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:21 GMT + - Fri, 15 Jan 2021 14:15:36 GMT expires: - '-1' pragma: @@ -9383,7 +7875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '56' x-powered-by: - ASP.NET status: @@ -9404,15 +7896,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9421,7 +7913,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:23 GMT + - Fri, 15 Jan 2021 14:15:38 GMT expires: - '-1' pragma: @@ -9437,7 +7929,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '55' x-powered-by: - ASP.NET status: @@ -9458,15 +7950,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9475,7 +7967,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:24 GMT + - Fri, 15 Jan 2021 14:15:39 GMT expires: - '-1' pragma: @@ -9491,7 +7983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '54' x-powered-by: - ASP.NET status: @@ -9512,15 +8004,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9529,7 +8021,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:26 GMT + - Fri, 15 Jan 2021 14:15:41 GMT expires: - '-1' pragma: @@ -9545,7 +8037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '53' x-powered-by: - ASP.NET status: @@ -9566,15 +8058,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9583,7 +8075,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:27 GMT + - Fri, 15 Jan 2021 14:15:42 GMT expires: - '-1' pragma: @@ -9599,7 +8091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '52' x-powered-by: - ASP.NET status: @@ -9620,15 +8112,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9637,7 +8129,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:28 GMT + - Fri, 15 Jan 2021 14:15:44 GMT expires: - '-1' pragma: @@ -9653,7 +8145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '51' x-powered-by: - ASP.NET status: @@ -9674,15 +8166,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9691,7 +8183,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:30 GMT + - Fri, 15 Jan 2021 14:15:45 GMT expires: - '-1' pragma: @@ -9707,7 +8199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '50' x-powered-by: - ASP.NET status: @@ -9728,15 +8220,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9745,7 +8237,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:31 GMT + - Fri, 15 Jan 2021 14:15:46 GMT expires: - '-1' pragma: @@ -9761,7 +8253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '49' x-powered-by: - ASP.NET status: @@ -9782,15 +8274,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9799,7 +8291,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:32 GMT + - Fri, 15 Jan 2021 14:15:48 GMT expires: - '-1' pragma: @@ -9815,7 +8307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '48' x-powered-by: - ASP.NET status: @@ -9836,15 +8328,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9853,7 +8345,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:34 GMT + - Fri, 15 Jan 2021 14:15:49 GMT expires: - '-1' pragma: @@ -9869,7 +8361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '47' x-powered-by: - ASP.NET status: @@ -9890,15 +8382,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9907,7 +8399,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:35 GMT + - Fri, 15 Jan 2021 14:15:52 GMT expires: - '-1' pragma: @@ -9923,7 +8415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '46' x-powered-by: - ASP.NET status: @@ -9944,15 +8436,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9961,7 +8453,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:37 GMT + - Fri, 15 Jan 2021 14:15:53 GMT expires: - '-1' pragma: @@ -9977,7 +8469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '45' x-powered-by: - ASP.NET status: @@ -9998,15 +8490,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10015,7 +8507,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:38 GMT + - Fri, 15 Jan 2021 14:15:55 GMT expires: - '-1' pragma: @@ -10031,7 +8523,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '44' x-powered-by: - ASP.NET status: @@ -10052,15 +8544,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10069,7 +8561,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:40 GMT + - Fri, 15 Jan 2021 14:15:56 GMT expires: - '-1' pragma: @@ -10085,7 +8577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '43' x-powered-by: - ASP.NET status: @@ -10106,15 +8598,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10123,7 +8615,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:41 GMT + - Fri, 15 Jan 2021 14:15:59 GMT expires: - '-1' pragma: @@ -10139,7 +8631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '42' x-powered-by: - ASP.NET status: @@ -10160,15 +8652,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10177,7 +8669,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:44 GMT + - Fri, 15 Jan 2021 14:16:01 GMT expires: - '-1' pragma: @@ -10193,7 +8685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '41' x-powered-by: - ASP.NET status: @@ -10214,15 +8706,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10231,7 +8723,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:45 GMT + - Fri, 15 Jan 2021 14:16:02 GMT expires: - '-1' pragma: @@ -10247,7 +8739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '40' x-powered-by: - ASP.NET status: @@ -10268,15 +8760,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10285,7 +8777,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:47 GMT + - Fri, 15 Jan 2021 14:16:04 GMT expires: - '-1' pragma: @@ -10301,7 +8793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '39' x-powered-by: - ASP.NET status: @@ -10322,15 +8814,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10339,7 +8831,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:48 GMT + - Fri, 15 Jan 2021 14:16:05 GMT expires: - '-1' pragma: @@ -10355,7 +8847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '38' x-powered-by: - ASP.NET status: @@ -10376,15 +8868,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10393,7 +8885,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:50 GMT + - Fri, 15 Jan 2021 14:16:07 GMT expires: - '-1' pragma: @@ -10409,7 +8901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '37' x-powered-by: - ASP.NET status: @@ -10430,15 +8922,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10447,7 +8939,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:51 GMT + - Fri, 15 Jan 2021 14:16:08 GMT expires: - '-1' pragma: @@ -10463,7 +8955,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '36' x-powered-by: - ASP.NET status: @@ -10484,15 +8976,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10501,7 +8993,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:53 GMT + - Fri, 15 Jan 2021 14:16:10 GMT expires: - '-1' pragma: @@ -10517,7 +9009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '35' x-powered-by: - ASP.NET status: @@ -10538,15 +9030,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10555,7 +9047,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:54 GMT + - Fri, 15 Jan 2021 14:16:11 GMT expires: - '-1' pragma: @@ -10571,7 +9063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '34' x-powered-by: - ASP.NET status: @@ -10592,15 +9084,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10609,7 +9101,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:55 GMT + - Fri, 15 Jan 2021 14:16:13 GMT expires: - '-1' pragma: @@ -10625,7 +9117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '33' x-powered-by: - ASP.NET status: @@ -10646,15 +9138,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10663,7 +9155,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:57 GMT + - Fri, 15 Jan 2021 14:16:14 GMT expires: - '-1' pragma: @@ -10679,7 +9171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '32' x-powered-by: - ASP.NET status: @@ -10700,15 +9192,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10717,7 +9209,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:00:58 GMT + - Fri, 15 Jan 2021 14:16:16 GMT expires: - '-1' pragma: @@ -10733,7 +9225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '31' x-powered-by: - ASP.NET status: @@ -10754,15 +9246,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10771,7 +9263,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:00 GMT + - Fri, 15 Jan 2021 14:16:17 GMT expires: - '-1' pragma: @@ -10787,7 +9279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '30' x-powered-by: - ASP.NET status: @@ -10808,15 +9300,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10825,7 +9317,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:01 GMT + - Fri, 15 Jan 2021 14:16:19 GMT expires: - '-1' pragma: @@ -10841,7 +9333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '29' x-powered-by: - ASP.NET status: @@ -10862,15 +9354,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10879,7 +9371,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:03 GMT + - Fri, 15 Jan 2021 14:16:20 GMT expires: - '-1' pragma: @@ -10895,7 +9387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '28' x-powered-by: - ASP.NET status: @@ -10916,15 +9408,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10933,7 +9425,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:04 GMT + - Fri, 15 Jan 2021 14:16:22 GMT expires: - '-1' pragma: @@ -10949,7 +9441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '27' x-powered-by: - ASP.NET status: @@ -10970,15 +9462,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10987,7 +9479,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:05 GMT + - Fri, 15 Jan 2021 14:16:23 GMT expires: - '-1' pragma: @@ -11003,7 +9495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '26' x-powered-by: - ASP.NET status: @@ -11024,15 +9516,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11041,7 +9533,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:07 GMT + - Fri, 15 Jan 2021 14:16:25 GMT expires: - '-1' pragma: @@ -11057,7 +9549,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '25' x-powered-by: - ASP.NET status: @@ -11078,15 +9570,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11095,7 +9587,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:08 GMT + - Fri, 15 Jan 2021 14:16:26 GMT expires: - '-1' pragma: @@ -11111,7 +9603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '24' x-powered-by: - ASP.NET status: @@ -11132,15 +9624,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11149,7 +9641,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:10 GMT + - Fri, 15 Jan 2021 14:16:27 GMT expires: - '-1' pragma: @@ -11165,7 +9657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '23' x-powered-by: - ASP.NET status: @@ -11186,15 +9678,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11203,7 +9695,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:11 GMT + - Fri, 15 Jan 2021 14:16:29 GMT expires: - '-1' pragma: @@ -11219,7 +9711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '22' x-powered-by: - ASP.NET status: @@ -11240,15 +9732,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11257,7 +9749,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:12 GMT + - Fri, 15 Jan 2021 14:16:30 GMT expires: - '-1' pragma: @@ -11273,7 +9765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '21' x-powered-by: - ASP.NET status: @@ -11294,15 +9786,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11311,7 +9803,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:14 GMT + - Fri, 15 Jan 2021 14:16:32 GMT expires: - '-1' pragma: @@ -11327,7 +9819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '20' x-powered-by: - ASP.NET status: @@ -11348,15 +9840,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11365,7 +9857,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:15 GMT + - Fri, 15 Jan 2021 14:16:33 GMT expires: - '-1' pragma: @@ -11381,7 +9873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '19' x-powered-by: - ASP.NET status: @@ -11402,15 +9894,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11419,7 +9911,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:17 GMT + - Fri, 15 Jan 2021 14:16:35 GMT expires: - '-1' pragma: @@ -11435,7 +9927,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '18' x-powered-by: - ASP.NET status: @@ -11456,15 +9948,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11473,7 +9965,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:19 GMT + - Fri, 15 Jan 2021 14:16:36 GMT expires: - '-1' pragma: @@ -11489,7 +9981,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '17' x-powered-by: - ASP.NET status: @@ -11510,15 +10002,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11527,7 +10019,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:20 GMT + - Fri, 15 Jan 2021 14:16:38 GMT expires: - '-1' pragma: @@ -11543,7 +10035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '16' x-powered-by: - ASP.NET status: @@ -11564,15 +10056,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11581,7 +10073,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:21 GMT + - Fri, 15 Jan 2021 14:16:39 GMT expires: - '-1' pragma: @@ -11597,7 +10089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '15' x-powered-by: - ASP.NET status: @@ -11618,15 +10110,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11635,7 +10127,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:23 GMT + - Fri, 15 Jan 2021 14:16:40 GMT expires: - '-1' pragma: @@ -11651,7 +10143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '14' x-powered-by: - ASP.NET status: @@ -11672,15 +10164,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11689,7 +10181,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:24 GMT + - Fri, 15 Jan 2021 14:16:42 GMT expires: - '-1' pragma: @@ -11705,7 +10197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '13' x-powered-by: - ASP.NET status: @@ -11726,15 +10218,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11743,7 +10235,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:26 GMT + - Fri, 15 Jan 2021 14:16:43 GMT expires: - '-1' pragma: @@ -11759,7 +10251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '12' x-powered-by: - ASP.NET status: @@ -11780,15 +10272,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11797,7 +10289,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:27 GMT + - Fri, 15 Jan 2021 14:16:45 GMT expires: - '-1' pragma: @@ -11813,7 +10305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '11' x-powered-by: - ASP.NET status: @@ -11834,15 +10326,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11851,7 +10343,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:29 GMT + - Fri, 15 Jan 2021 14:16:46 GMT expires: - '-1' pragma: @@ -11867,7 +10359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '10' x-powered-by: - ASP.NET status: @@ -11888,15 +10380,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11905,7 +10397,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:30 GMT + - Fri, 15 Jan 2021 14:16:48 GMT expires: - '-1' pragma: @@ -11921,7 +10413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '9' x-powered-by: - ASP.NET status: @@ -11942,15 +10434,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -11959,7 +10451,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:33 GMT + - Fri, 15 Jan 2021 14:16:49 GMT expires: - '-1' pragma: @@ -11975,7 +10467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '8' x-powered-by: - ASP.NET status: @@ -11996,15 +10488,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12013,7 +10505,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:34 GMT + - Fri, 15 Jan 2021 14:16:51 GMT expires: - '-1' pragma: @@ -12029,7 +10521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '7' x-powered-by: - ASP.NET status: @@ -12050,15 +10542,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"InProgress","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"InProgress","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -12067,7 +10559,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:36 GMT + - Fri, 15 Jan 2021 14:16:52 GMT expires: - '-1' pragma: @@ -12083,7 +10575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '6' x-powered-by: - ASP.NET status: @@ -12104,15 +10596,15 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/18da1824-6703-485c-a661-f6579e88d681?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/503d4d77-50a3-4080-bfc9-d1763187635c?api-version=2020-10-01 response: body: - string: '{"id":"18da1824-6703-485c-a661-f6579e88d681","name":"18da1824-6703-485c-a661-f6579e88d681","status":"Succeeded","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"2020-12-18T17:59:45.9390486Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"16dec697-7b85-422b-bc9d-1a1012455c4b"}}' + string: '{"id":"503d4d77-50a3-4080-bfc9-d1763187635c","name":"503d4d77-50a3-4080-bfc9-d1763187635c","status":"Succeeded","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"2021-01-15T14:15:02.3409715Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0ccea9a9-eacc-4d1f-86e7-57ff2429517c"}}' headers: cache-control: - no-cache @@ -12121,7 +10613,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:38 GMT + - Fri, 15 Jan 2021 14:16:54 GMT expires: - '-1' pragma: @@ -12137,7 +10629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '5' x-powered-by: - ASP.NET status: @@ -12158,16 +10650,16 @@ interactions: - --backup-management-type --workload-type -g -v -c -i --delete-backup-data --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - 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/16dec697-7b85-422b-bc9d-1a1012455c4b?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0ccea9a9-eacc-4d1f-86e7-57ff2429517c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/16dec697-7b85-422b-bc9d-1a1012455c4b","name":"16dec697-7b85-422b-bc9d-1a1012455c4b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.6551731S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM - Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2020-12-18T17:59:45.9390486Z","endTime":"2020-12-18T18:01:37.5942217Z","activityId":"ce168672-415a-11eb-9a06-c03eba45757e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0ccea9a9-eacc-4d1f-86e7-57ff2429517c","name":"0ccea9a9-eacc-4d1f-86e7-57ff2429517c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureIaaSVMJob","containerName":"iaasvmcontainerv2;clitest.rg000001;clitest-vm000003","duration":"PT1M51.6172013S","virtualMachineVersion":"Compute","extendedInfo":{"tasksList":[],"propertyBag":{"VM + Name":"clitest-vm000003","Number of Recovery Points":"0"}},"entityFriendlyName":"clitest-vm000003","backupManagementType":"AzureIaasVM","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-15T14:15:02.3409715Z","endTime":"2021-01-15T14:16:53.9581728Z","activityId":"0d7ac0c7-573c-11eb-b911-c8f750f92764"}}' headers: cache-control: - no-cache @@ -12176,7 +10668,7 @@ interactions: content-type: - application/json date: - - Fri, 18 Dec 2020 18:01:38 GMT + - Fri, 15 Jan 2021 14:16:56 GMT expires: - '-1' pragma: @@ -12193,7 +10685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -12215,8 +10707,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE @@ -12230,7 +10722,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Dec 2020 18:01:41 GMT + - Fri, 15 Jan 2021 14:17:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml index 10bb31e1373..9c989cadb76 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml @@ -17,24 +17,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2019-12-17T11%3A36%3A52.9861283Z''\"","properties":{"provisioningState":"Succeeded"},"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":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","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: - - '448' + - '532' content-type: - application/json date: - - Tue, 17 Dec 2019 11:36:53 GMT + - Mon, 11 Jan 2021 06:05:43 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '206' status: code: 201 message: Created @@ -68,24 +68,24 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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-vault000003?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2019-12-17T11%3A37%3A04.4201435Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '448' + - '532' content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:05 GMT + - Mon, 11 Jan 2021 06:05:56 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '205' status: code: 201 message: Created @@ -119,24 +119,24 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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-vault000004?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2019-12-17T11%3A37%3A15.5999133Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '500' + - '584' content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:16 GMT + - Mon, 11 Jan 2021 06:06:07 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '208' status: code: 201 message: Created @@ -170,24 +170,24 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 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-vault000005?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2019-12-17T11%3A37%3A24.2822784Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '500' + - '584' content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:24 GMT + - Mon, 11 Jan 2021 06:06:19 GMT expires: - '-1' pragma: @@ -199,7 +199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '207' status: code: 201 message: Created @@ -215,29 +215,30 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"clitest-vaulttzcb3bcxyuo","etag":"W/\"datetime''2019-12-16T09%3A02%3A52.9685175Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga6bnasd3dyjxku2ievftiw3bzpvqufmcypacjmleqhq3gr6hjtarsgntkl4t3iq4c/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttzcb3bcxyuo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault7qtp4zzptlg","etag":"W/\"datetime''2019-12-16T12%3A48%3A36.5626212Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkso4rgyy74d27ofcbi5cvmbl4ihlwg6d5bygjzsno3jtsgnfh74e5s5opjnocxdpd/providers/Microsoft.RecoveryServices/vaults/clitest-vault7qtp4zzptlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2019-12-17T11%3A36%3A52.9861283Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2019-12-17T11%3A37%3A04.4201435Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2019-12-17T11%3A37%3A15.5999133Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2019-12-17T11%3A37%3A24.2822784Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2019-07-03T12%3A14%3A43.0182938Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"PSTestRSV1a28b276","etag":"W/\"datetime''2019-11-18T11%3A06%3A30.8238704Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG1a28b276/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1a28b276","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"PSTestRSV7755f32d","etag":"W/\"datetime''2019-11-11T09%3A14%3A56.3940351Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7755f32d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7755f32d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB - Used":" Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"srbansInisightTest","etag":"W/\"datetime''2019-07-04T12%3A20%3A19.7732972Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansInisightTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"vault609","etag":"W/\"datetime''2020-05-04T08%3A41%3A11.4951522Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai1/providers/Microsoft.RecoveryServices/vaults/vault609","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","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"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultlfip4trewir","etag":"W/\"datetime''2021-01-11T05%3A27%3A17.2829381Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgur5z4wscam46jsesr7ew2gxlodwbmsbom53jzxnrnvnsceljdiwh7gaorii7bz3tj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlfip4trewir","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"hiagaSQL2-vault","etag":"W/\"datetime''2020-09-06T02%3A06%3A36.6143346Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL2-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagaSQL3-vault","etag":"W/\"datetime''2020-09-07T04%3A24%3A03.0496077Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL3-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL3-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawus-vault","etag":"W/\"datetime''2020-11-11T13%3A51%3A50.5578587Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bf788512-db64-4d8a-9ac0-7200af6e47cc","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawusCRR-vault","etag":"W/\"datetime''2020-12-15T02%3A19%3A12.7006676Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2021","Purpose":"Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"68a94769-bcbc-4095-9cf6-0d90d7425f24","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawusCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"adigupt-vault","etag":"W/\"datetime''2020-05-08T14%3A07%3A50.5556413Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaCRR-vault","etag":"W/\"datetime''2021-01-05T14%3A55%3A03.2465212Z''\"","tags":{"Owner":"hiaga","MAB + Used":"Yes","DeleteBy":"01-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL-vault","etag":"W/\"datetime''2020-08-21T03%3A53%3A00.0441246Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL4-vault","etag":"W/\"datetime''2020-09-08T08%3A43%3A44.3952849Z''\"","tags":{"MABUSed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL4-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL4-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL5-vault","etag":"W/\"datetime''2020-10-08T09%3A46%3A01.4670715Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"02-2020","Purpose":"Testing","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL5-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL5-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeastus2-vault","etag":"W/\"datetime''2020-12-08T14%3A36%3A03.5118198Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"851f9a31-cdc0-4824-ba3b-229f181425b3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeastus2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeus-vault","etag":"W/\"datetime''2020-12-23T09%3A34%3A03.0448565Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d7b03182-a7fa-491c-82e8-dfd410995968","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-crr-vault","etag":"W/\"datetime''2020-12-18T08%3A57%3A31.9807857Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-vault-eastasia","etag":"W/\"datetime''2021-01-04T09%3A17%3A59.5133999Z''\"","tags":{"MABUsed":"Yes","Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-eastasia","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"afsexistingvault","etag":"W/\"datetime''2020-03-31T13%3A54%3A34.020273Z''\"","tags":{"Purpose":"Testing","Owner":"akkanase","Delete + By":"12-2020"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akeema-vault","etag":"W/\"datetime''2020-11-20T13%3A22%3A52.8562272Z''\"","tags":{"MAUsed":"Yes","DeleteBy":"12-9999","Owner":"akneema","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akeema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-test-vault","etag":"W/\"datetime''2021-01-06T06%3A01%3A26.0627776Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-test-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-vault2","etag":"W/\"datetime''2020-12-11T13%3A28%3A17.2415669Z''\"","tags":{"MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999","Owner":"akneema"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2020-03-06T03%3A58%3A14.4344656Z''\"","tags":{"MAB + Used":"Yes","test":"t"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcwr6nizwavp","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.9545679Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg277r2zpenav24joabbpzwijewtrgr3yl35mdbh5av45oqjv7log62kttvpxt5y7h3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcwr6nizwavp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjr4ethvhvjc","etag":"W/\"datetime''2021-01-10T17%3A55%3A38.4416342Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rfypppts5rjrrfr7ifjojuvs6rm2usnk75hlq3vwmh3jpvxz4o2nzbhx5oxxfmcp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4ethvhvjc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbfxavivqf7s","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.8762878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbfxavivqf7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultucosyyhak52","etag":"W/\"datetime''2021-01-09T20%3A28%3A27.7341371Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bor6n6gihygmrccl4pnljoxzywwp3crd5qr6nqvcegjpgpgcuij77vhingmhjsyb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultucosyyhak52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta3ouvoekp6t","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.9533199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4slvxfqd2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta3ouvoekp6t","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpxde47exagx","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.2058238Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4wklpcfkgf7z2dmo6yirtwditpr6dv5ucorh676hhonvegblxjeoifav3gzbonc2i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpxde47exagx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7in3qjdxfr","etag":"W/\"datetime''2021-01-06T15%3A58%3A34.1417672Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5573ubw6roitcsrdz6hzza2empzhwymsal6xjfz7dmammdgx3cdj5hyffepoj5oxf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7in3qjdxfr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuflhhudbt3u","etag":"W/\"datetime''2021-01-10T17%3A55%3A35.8411364Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5g5s7xpe34k72pynp75g7jny7tr2wetfuo3ed4iqip4sw6bywv676oa3xywsh3k7j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuflhhudbt3u","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault25xlq7dib23","etag":"W/\"datetime''2021-01-08T17%3A03%3A08.7326212Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jbe2uazdxp7zjpm22gdx2gp64hvy3weckmenc6nezzymq2f6l6n6nko2amqrnvzb/providers/Microsoft.RecoveryServices/vaults/clitest-vault25xlq7dib23","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwmpl3qgwfg4","etag":"W/\"datetime''2021-01-07T04%3A54%3A30.3460476Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xuqn4xdnqfvm3hlgevt5osktky7cca3rtwgmg7zsntdew2gg5ixpp7zxrtuaopah/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmpl3qgwfg4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh6xp2wkpzx","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.0676763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5z6lqplkl5xl5cqwg3xotn6z3fnnih3uoukfmxpnsqnsvdvdz7yrp52jdjczwgegj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh6xp2wkpzx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbf6sdjrxctn","etag":"W/\"datetime''2021-01-08T14%3A22%3A43.7596075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5zfaooyu3ci4bhk64bmrjmt2x3s3rcihukwnoxwbmm3t7dip6jtewrctvmigge7xw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbf6sdjrxctn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqlhigqsi2cf","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.7160857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6jjuk24bbq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlhigqsi2cf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvnakqvrqgzt","etag":"W/\"datetime''2021-01-06T14%3A45%3A22.3124515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7eeg5kn2wluu7ldvilbazxkno6wskki5gnab5tgxalbjmxk3x7gtcsw7eszm46tj2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvnakqvrqgzt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgjk7mz6fyhf","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.5948619Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7urwpve2juwektv5s4642zs5xeakyxcmw3poj3ndiu65n7wxiovz2xwgjdc3fsmuc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgjk7mz6fyhf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault5szzol4kfzd","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.7994324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaewowgsrym/providers/Microsoft.RecoveryServices/vaults/clitest-vault5szzol4kfzd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgapuxwdjibg","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.4488365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgapuxwdjibg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfvsi6g66uth","etag":"W/\"datetime''2021-01-07T11%3A25%3A56.1212289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7nrg72xp5gp3zhqyter6xdlxrz2haedz3562ska7wzqed3otvm4eea4uzd2vnpba/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfvsi6g66uth","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7eta74baok","etag":"W/\"datetime''2021-01-07T07%3A34%3A22.6756673Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgceahedzhenlacupvfnpc23czgmtc43w3z4d4zdobn4sanzia2n4aseddba3ldxsjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7eta74baok","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu3duvsfrync","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.1234067Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoabmppv64fencfttdqlhkvd7vwi7p6nubejoofb66kuggbe4nnkci6pxc6ipo4et/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu3duvsfrync","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcumrfa7o4zt","etag":"W/\"datetime''2021-01-08T08%3A45%3A52.6634888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd3a2hwy47en62f57wkpvrzxezog3pblaswlfotnhipimvkjlttthlqmx2ezpqbo7q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcumrfa7o4zt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault726ru236iyu","etag":"W/\"datetime''2021-01-11T05%3A18%3A29.7488289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge4useixderuvq52snvipbhksc6d7phjgict2ykdyj4tdt35wrhiejoebgkoatrmo6/providers/Microsoft.RecoveryServices/vaults/clitest-vault726ru236iyu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvfh3djlop4f","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.607874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge7sivckznpxcnvxe57jfdmwkvzigzxracwbofqlladeueocr7t6ond36x662z76xx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvfh3djlop4f","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultir3l4dazut5","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3106544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeesvwvwn2j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultir3l4dazut5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvmm6pq74jlf","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8714654Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeytjrlmliz4jkibkbn3ajhahfs63lsosqydzckunbwgo6myzw434zter6sgspvth5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvmm6pq74jlf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultes3komvrsft","etag":"W/\"datetime''2021-01-07T12%3A57%3A36.7199916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfuev6k4keu7g3hgdixiaut76wnamny4piftf6vggrgtdzpjz5kjpp2h4d2ytgaafm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultes3komvrsft","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4teeoxjz6cy","etag":"W/\"datetime''2021-01-10T16%3A51%3A40.8654697Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicfsoyku7j6x3s2m7pwu7p3zourq6opiwgmpekdfvm6cqkfhpoi5mdux3kmniw27b/providers/Microsoft.RecoveryServices/vaults/clitest-vault4teeoxjz6cy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4s2mpne5yi","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.1507977Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkduoc63ee54eaxrnnlsm2tuyihkjc46ixdwarei2qlrtufe5r5u644qbth6w66td3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4s2mpne5yi","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultreg4rfedycg","etag":"W/\"datetime''2021-01-08T12%3A42%3A50.8979163Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglfnpmmbtd5yogwh46k7hygjf7gcrwnp3t2nynwl5ex6z742j5p7u5e4gibmu6wg7f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultreg4rfedycg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcg7ibkqz34a","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.5128492Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3hjatsouk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcg7ibkqz34a","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4ngmcfovez","etag":"W/\"datetime''2021-01-08T10%3A54%3A34.5632529Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnwc3kdwadxlimi2o4dhxi5zqpzqnqhfc5olpz5jl4qecy4rp4rkyfchf7odkbqhob/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4ngmcfovez","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnlrsk45iv6i","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.813227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo35yb5xe4y5hbz2amdf4nzt2wbjzemxylcbuakn3anoloc7rdc5qknit7czctwvie/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnlrsk45iv6i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjwonznvxhfm","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.012624Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohsok6mg4kofwjgpiu7tbz3z5ohhc42iduah6zxz7rxctkcomfyzx5utdzzcvonmz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjwonznvxhfm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulte33hczi5bqg","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8444391Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6gqgab64fyzl734vunv4x5icbqymrupovhfpb2vroj4m2wthwyrmhnp2vlsi7xy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte33hczi5bqg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpc5ovgpgkde","etag":"W/\"datetime''2021-01-10T17%3A55%3A37.2785201Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoohifemlsjo3xzrik5634jk57y7ks2tu3kurincl6q6ywnm2t2tre35ghkfq3yroa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpc5ovgpgkde","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxw7ernlqmb3","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.8875164Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp7lqsusvjyopu6izt4qmp2us2372vudbaieylbejw7mkhxv5yc54bal7e3z7b4kqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxw7ernlqmb3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7lbokail5d4","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3236668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.RecoveryServices/vaults/clitest-vault7lbokail5d4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultphhdbykx4jt","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9142756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultphhdbykx4jt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultx2jd5l4kpuq","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.5411469Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4r5sp2rw26xgyv3ry3czw72t35hfmpnld4k2xf7vqwd6e6gvyhavpvkgypvpms7g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx2jd5l4kpuq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxgggo6obmge","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.2588727Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq7z2f6xakf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgggo6obmge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault542uowsygix","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1607369Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.RecoveryServices/vaults/clitest-vault542uowsygix","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu4c2x7tachz","etag":"W/\"datetime''2021-01-09T16%3A42%3A20.6221849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqozivfz7cvfzigvzfi7qzm6oazhemnmqsl2r5pstmw5u42aprlz5n34kfr3juqcyh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu4c2x7tachz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzbutyxwykn5","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.8865027Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr6n3g5bmo77wyrmdopwkqtngr7ysjgao2v7i4e2hmtqjlmdxtahy7ryaa56nscwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbutyxwykn5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj4tk2etksoe","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.1307363Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrji2rvsstak74vd7u6jtxhrv7tpmor5t27ybqzq6gmvzi4d6uszx4xczcsxh6twt5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj4tk2etksoe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultffztcamksk2","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0738895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrwdyzk7pzd7e6h5me5idpqckp4gwlsjohfo6bps2nrp5o6j7upietuvqpmkmwn54p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultffztcamksk2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4bfjnrbb447","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.3089206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5ohknj4mi/providers/Microsoft.RecoveryServices/vaults/clitest-vault4bfjnrbb447","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulteddpkaxths2","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.49283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7lqkysvww/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteddpkaxths2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultligftfuozzs","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.6062473Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsi44xot3of/providers/Microsoft.RecoveryServices/vaults/clitest-vaultligftfuozzs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta5f5nzdvvku","etag":"W/\"datetime''2021-01-11T05%3A07%3A01.1574617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsizffjmto327o6fzaplyxds7vwzfv7pf6sy3cslmk5im3bu3nzchseids2vba4pb6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta5f5nzdvvku","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulttwfjblszvam","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9613203Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqav3wldo7/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttwfjblszvam","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulterxnp5nbhjk","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.9986235Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4rjejvgoorkbs65fbm4mgz5gddesoxdz7y4oum4o6dy6ccu6e2ytbfe5lnsfkdlq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterxnp5nbhjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault53mrvgdggaj","etag":"W/\"datetime''2021-01-10T05%3A33%3A28.8946127Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlspgd4bkxcozrmer6ehqmp5e7fz5cn4qrprhlf3435pvit56ai2qb3vhkquefaia/providers/Microsoft.RecoveryServices/vaults/clitest-vault53mrvgdggaj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpvkojszsw45","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0808958Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5b4jlr2b4i4en4yt5565tdozabduljfj22k7hlnrhzr7st2fvebq4w4n4xekqpzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpvkojszsw45","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpyvjmigegvo","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1036822Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpyvjmigegvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlhi45vy3udq","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.053409Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlhi45vy3udq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmh5n35aaow6","etag":"W/\"datetime''2021-01-07T19%3A28%3A24.2834211Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyq7wzdlnegktw6aadl2z3w3l32uyzoms7i5gq5rhgkuvzoeb75dcroquj7c7ok2qj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmh5n35aaow6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqadnbffxljk","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.6152432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7c2ggv4m537qjgnox64jre3gd6ulzt3uqj6y2w2amvrowbht5ppwdmi42emh66zv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqadnbffxljk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6j5ywfo7of7","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.3779895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbpnjfiq7qn4zu5cnjzpdqyztkiir23o576j3kgqjgeg4oypv76r2ubm3uua3upn5/providers/Microsoft.RecoveryServices/vaults/clitest-vault6j5ywfo7of7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3gcnxkg5umf","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.4090038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzhpcwbvjw6suhxpf5x5vlykbizgmwuhguc42u5s3sdi6kqrw7ayah4easunhw3zeh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3gcnxkg5umf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultagqnmakqvlg","etag":"W/\"datetime''2021-01-07T09%3A24%3A46.6598763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzp3dtvw2ofzomgvemjy3cp4wtygymmjbzr5ry2an2xfvnsgxj7dr4i7yljjnjpgbx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultagqnmakqvlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfyr4v7mjlv7","etag":"W/\"datetime''2021-01-11T05%3A28%3A15.6870568Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzwc5pf3r5cb44nk4rze35edkdviu7r3pygkgxxocwrlauqbua3gztgw52jtlndhwl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfyr4v7mjlv7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"mayaggar-vault","etag":"W/\"datetime''2020-01-27T09%3A27%3A10.5580184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarRG/providers/Microsoft.RecoveryServices/vaults/mayaggar-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"geetaVaultTest","etag":"W/\"datetime''2020-02-28T05%3A18%3A57.7162661Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/geetaVaultTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault906","etag":"W/\"datetime''2020-05-22T04%3A51%3A12.428869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg2/providers/Microsoft.RecoveryServices/vaults/vault906","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB + Used":" Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"jakavetVault","etag":"W/\"datetime''2020-04-15T14%3A45%3A31.2234657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hiagawcus-vault","etag":"W/\"datetime''2020-07-21T11%3A03%3A12.6344999Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawcus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawcus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '12536' + - '57814' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Dec 2019 11:37:27 GMT + - Mon, 11 Jan 2021 06:06:21 GMT expires: - '-1' pragma: @@ -249,16 +250,17 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 - - d614f26a-ced9-4ae1-9040-83966c81f473 + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 12aa6016-9bdf-44fd-8d82-9427d488817d status: code: 200 message: OK @@ -276,24 +278,24 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2019-12-17T11%3A36%3A52.9861283Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2019-12-17T11%3A37%3A04.4201435Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2019-12-17T11%3A37%3A15.5999133Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2019-12-17T11%3A37%3A24.2822784Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","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"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '1911' + - '2247' content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:29 GMT + - Mon, 11 Jan 2021 06:06:21 GMT expires: - '-1' pragma: @@ -325,12 +327,12 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -342,7 +344,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:31 GMT + - Mon, 11 Jan 2021 06:06:23 GMT expires: - '-1' pragma: @@ -357,6 +359,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -376,12 +380,12 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig?api-version=2018-12-20 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig","name":"vaultstorageconfig","type":"Microsoft.RecoveryServices/vaults/backupstorageconfig","properties":{"storageModelType":"GeoRedundant","storageType":"GeoRedundant","dedupState":"Disabled","xcoolState":"Disabled","storageTypeState":"Unlocked","crossRegionRestoreFlag":false}}' @@ -393,7 +397,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:32 GMT + - Mon, 11 Jan 2021 06:06:25 GMT expires: - '-1' pragma: @@ -408,6 +412,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -431,12 +437,12 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupstorageconfig/vaultstorageconfig?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig?api-version=2018-12-20 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig","name":"vaultstorageconfig","type":"Microsoft.RecoveryServices/vaults/backupstorageconfig","properties":{"storageModelType":"LocallyRedundant","storageType":"LocallyRedundant","dedupState":"Disabled","xcoolState":"Disabled","storageTypeState":"Unlocked","crossRegionRestoreFlag":false}}' @@ -448,7 +454,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:35 GMT + - Mon, 11 Jan 2021 06:06:29 GMT expires: - '-1' pragma: @@ -464,7 +470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1181' x-powered-by: - ASP.NET status: @@ -484,12 +490,12 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2019-06-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupconfig/vaultconfig?api-version=2020-10-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}}' @@ -501,7 +507,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:37 GMT + - Mon, 11 Jan 2021 06:11:32 GMT expires: - '-1' pragma: @@ -516,6 +522,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -535,12 +543,12 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig?api-version=2016-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig?api-version=2018-12-20 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupstorageconfig/vaultstorageconfig","name":"vaultstorageconfig","type":"Microsoft.RecoveryServices/vaults/backupstorageconfig","properties":{"storageModelType":"LocallyRedundant","storageType":"LocallyRedundant","dedupState":"Disabled","xcoolState":"Disabled","storageTypeState":"Unlocked","crossRegionRestoreFlag":false}}' @@ -552,7 +560,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:37 GMT + - Mon, 11 Jan 2021 06:11:35 GMT expires: - '-1' pragma: @@ -567,6 +575,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -588,8 +598,8 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -603,7 +613,7 @@ interactions: content-length: - '0' date: - - Tue, 17 Dec 2019 11:37:47 GMT + - Mon, 11 Jan 2021 06:11:44 GMT expires: - '-1' pragma: @@ -613,7 +623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '8' status: code: 200 message: OK @@ -629,29 +639,30 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"clitest-vaulttzcb3bcxyuo","etag":"W/\"datetime''2019-12-16T09%3A02%3A52.9685175Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga6bnasd3dyjxku2ievftiw3bzpvqufmcypacjmleqhq3gr6hjtarsgntkl4t3iq4c/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttzcb3bcxyuo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault7qtp4zzptlg","etag":"W/\"datetime''2019-12-16T12%3A48%3A36.5626212Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkso4rgyy74d27ofcbi5cvmbl4ihlwg6d5bygjzsno3jtsgnfh74e5s5opjnocxdpd/providers/Microsoft.RecoveryServices/vaults/clitest-vault7qtp4zzptlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2019-12-17T11%3A36%3A52.9861283Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2019-12-17T11%3A37%3A04.4201435Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2019-12-17T11%3A37%3A15.5999133Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2019-07-03T12%3A14%3A43.0182938Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"PSTestRSV1a28b276","etag":"W/\"datetime''2019-11-18T11%3A06%3A30.8238704Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG1a28b276/providers/Microsoft.RecoveryServices/vaults/PSTestRSV1a28b276","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"PSTestRSV7755f32d","etag":"W/\"datetime''2019-11-11T09%3A14%3A56.3940351Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PSTestRG7755f32d/providers/Microsoft.RecoveryServices/vaults/PSTestRSV7755f32d","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB - Used":" Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"srbansInisightTest","etag":"W/\"datetime''2019-07-04T12%3A20%3A19.7732972Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansInisightTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"vault609","etag":"W/\"datetime''2020-05-04T08%3A41%3A11.4951522Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai1/providers/Microsoft.RecoveryServices/vaults/vault609","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","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"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultlfip4trewir","etag":"W/\"datetime''2021-01-11T05%3A27%3A17.2829381Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgur5z4wscam46jsesr7ew2gxlodwbmsbom53jzxnrnvnsceljdiwh7gaorii7bz3tj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlfip4trewir","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"hiagaSQL2-vault","etag":"W/\"datetime''2020-09-06T02%3A06%3A36.6143346Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL2-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagaSQL3-vault","etag":"W/\"datetime''2020-09-07T04%3A24%3A03.0496077Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL3-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL3-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawus-vault","etag":"W/\"datetime''2020-11-11T13%3A51%3A50.5578587Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bf788512-db64-4d8a-9ac0-7200af6e47cc","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawusCRR-vault","etag":"W/\"datetime''2020-12-15T02%3A19%3A12.7006676Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2021","Purpose":"Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"68a94769-bcbc-4095-9cf6-0d90d7425f24","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawusCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"adigupt-vault","etag":"W/\"datetime''2020-05-08T14%3A07%3A50.5556413Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaCRR-vault","etag":"W/\"datetime''2021-01-05T14%3A55%3A03.2465212Z''\"","tags":{"Owner":"hiaga","MAB + Used":"Yes","DeleteBy":"01-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL-vault","etag":"W/\"datetime''2020-08-21T03%3A53%3A00.0441246Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL4-vault","etag":"W/\"datetime''2020-09-08T08%3A43%3A44.3952849Z''\"","tags":{"MABUSed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL4-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL4-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL5-vault","etag":"W/\"datetime''2020-10-08T09%3A46%3A01.4670715Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"02-2020","Purpose":"Testing","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL5-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL5-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeastus2-vault","etag":"W/\"datetime''2020-12-08T14%3A36%3A03.5118198Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"851f9a31-cdc0-4824-ba3b-229f181425b3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeastus2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeus-vault","etag":"W/\"datetime''2020-12-23T09%3A34%3A03.0448565Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d7b03182-a7fa-491c-82e8-dfd410995968","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-crr-vault","etag":"W/\"datetime''2020-12-18T08%3A57%3A31.9807857Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-vault-eastasia","etag":"W/\"datetime''2021-01-04T09%3A17%3A59.5133999Z''\"","tags":{"MABUsed":"Yes","Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-eastasia","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"afsexistingvault","etag":"W/\"datetime''2020-03-31T13%3A54%3A34.020273Z''\"","tags":{"Purpose":"Testing","Owner":"akkanase","Delete + By":"12-2020"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akeema-vault","etag":"W/\"datetime''2020-11-20T13%3A22%3A52.8562272Z''\"","tags":{"MAUsed":"Yes","DeleteBy":"12-9999","Owner":"akneema","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akeema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-test-vault","etag":"W/\"datetime''2021-01-06T06%3A01%3A26.0627776Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-test-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-vault2","etag":"W/\"datetime''2020-12-11T13%3A28%3A17.2415669Z''\"","tags":{"MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999","Owner":"akneema"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2020-03-06T03%3A58%3A14.4344656Z''\"","tags":{"MAB + Used":"Yes","test":"t"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcwr6nizwavp","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.9545679Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg277r2zpenav24joabbpzwijewtrgr3yl35mdbh5av45oqjv7log62kttvpxt5y7h3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcwr6nizwavp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjr4ethvhvjc","etag":"W/\"datetime''2021-01-10T17%3A55%3A38.4416342Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rfypppts5rjrrfr7ifjojuvs6rm2usnk75hlq3vwmh3jpvxz4o2nzbhx5oxxfmcp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4ethvhvjc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbfxavivqf7s","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.8762878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbfxavivqf7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultucosyyhak52","etag":"W/\"datetime''2021-01-09T20%3A28%3A27.7341371Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bor6n6gihygmrccl4pnljoxzywwp3crd5qr6nqvcegjpgpgcuij77vhingmhjsyb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultucosyyhak52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta3ouvoekp6t","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.9533199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4slvxfqd2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta3ouvoekp6t","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpxde47exagx","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.2058238Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4wklpcfkgf7z2dmo6yirtwditpr6dv5ucorh676hhonvegblxjeoifav3gzbonc2i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpxde47exagx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7in3qjdxfr","etag":"W/\"datetime''2021-01-06T15%3A58%3A34.1417672Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5573ubw6roitcsrdz6hzza2empzhwymsal6xjfz7dmammdgx3cdj5hyffepoj5oxf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7in3qjdxfr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuflhhudbt3u","etag":"W/\"datetime''2021-01-10T17%3A55%3A35.8411364Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5g5s7xpe34k72pynp75g7jny7tr2wetfuo3ed4iqip4sw6bywv676oa3xywsh3k7j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuflhhudbt3u","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault25xlq7dib23","etag":"W/\"datetime''2021-01-08T17%3A03%3A08.7326212Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jbe2uazdxp7zjpm22gdx2gp64hvy3weckmenc6nezzymq2f6l6n6nko2amqrnvzb/providers/Microsoft.RecoveryServices/vaults/clitest-vault25xlq7dib23","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwmpl3qgwfg4","etag":"W/\"datetime''2021-01-07T04%3A54%3A30.3460476Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xuqn4xdnqfvm3hlgevt5osktky7cca3rtwgmg7zsntdew2gg5ixpp7zxrtuaopah/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmpl3qgwfg4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh6xp2wkpzx","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.0676763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5z6lqplkl5xl5cqwg3xotn6z3fnnih3uoukfmxpnsqnsvdvdz7yrp52jdjczwgegj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh6xp2wkpzx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbf6sdjrxctn","etag":"W/\"datetime''2021-01-08T14%3A22%3A43.7596075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5zfaooyu3ci4bhk64bmrjmt2x3s3rcihukwnoxwbmm3t7dip6jtewrctvmigge7xw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbf6sdjrxctn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqlhigqsi2cf","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.7160857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6jjuk24bbq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlhigqsi2cf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvnakqvrqgzt","etag":"W/\"datetime''2021-01-06T14%3A45%3A22.3124515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7eeg5kn2wluu7ldvilbazxkno6wskki5gnab5tgxalbjmxk3x7gtcsw7eszm46tj2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvnakqvrqgzt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgjk7mz6fyhf","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.5948619Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7urwpve2juwektv5s4642zs5xeakyxcmw3poj3ndiu65n7wxiovz2xwgjdc3fsmuc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgjk7mz6fyhf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault5szzol4kfzd","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.7994324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaewowgsrym/providers/Microsoft.RecoveryServices/vaults/clitest-vault5szzol4kfzd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgapuxwdjibg","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.4488365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgapuxwdjibg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfvsi6g66uth","etag":"W/\"datetime''2021-01-07T11%3A25%3A56.1212289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7nrg72xp5gp3zhqyter6xdlxrz2haedz3562ska7wzqed3otvm4eea4uzd2vnpba/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfvsi6g66uth","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7eta74baok","etag":"W/\"datetime''2021-01-07T07%3A34%3A22.6756673Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgceahedzhenlacupvfnpc23czgmtc43w3z4d4zdobn4sanzia2n4aseddba3ldxsjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7eta74baok","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu3duvsfrync","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.1234067Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoabmppv64fencfttdqlhkvd7vwi7p6nubejoofb66kuggbe4nnkci6pxc6ipo4et/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu3duvsfrync","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcumrfa7o4zt","etag":"W/\"datetime''2021-01-08T08%3A45%3A52.6634888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd3a2hwy47en62f57wkpvrzxezog3pblaswlfotnhipimvkjlttthlqmx2ezpqbo7q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcumrfa7o4zt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault726ru236iyu","etag":"W/\"datetime''2021-01-11T05%3A18%3A29.7488289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge4useixderuvq52snvipbhksc6d7phjgict2ykdyj4tdt35wrhiejoebgkoatrmo6/providers/Microsoft.RecoveryServices/vaults/clitest-vault726ru236iyu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvfh3djlop4f","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.607874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge7sivckznpxcnvxe57jfdmwkvzigzxracwbofqlladeueocr7t6ond36x662z76xx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvfh3djlop4f","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultir3l4dazut5","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3106544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeesvwvwn2j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultir3l4dazut5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvmm6pq74jlf","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8714654Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeytjrlmliz4jkibkbn3ajhahfs63lsosqydzckunbwgo6myzw434zter6sgspvth5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvmm6pq74jlf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultes3komvrsft","etag":"W/\"datetime''2021-01-07T12%3A57%3A36.7199916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfuev6k4keu7g3hgdixiaut76wnamny4piftf6vggrgtdzpjz5kjpp2h4d2ytgaafm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultes3komvrsft","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4teeoxjz6cy","etag":"W/\"datetime''2021-01-10T16%3A51%3A40.8654697Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicfsoyku7j6x3s2m7pwu7p3zourq6opiwgmpekdfvm6cqkfhpoi5mdux3kmniw27b/providers/Microsoft.RecoveryServices/vaults/clitest-vault4teeoxjz6cy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4s2mpne5yi","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.1507977Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkduoc63ee54eaxrnnlsm2tuyihkjc46ixdwarei2qlrtufe5r5u644qbth6w66td3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4s2mpne5yi","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultreg4rfedycg","etag":"W/\"datetime''2021-01-08T12%3A42%3A50.8979163Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglfnpmmbtd5yogwh46k7hygjf7gcrwnp3t2nynwl5ex6z742j5p7u5e4gibmu6wg7f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultreg4rfedycg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcg7ibkqz34a","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.5128492Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3hjatsouk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcg7ibkqz34a","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4ngmcfovez","etag":"W/\"datetime''2021-01-08T10%3A54%3A34.5632529Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnwc3kdwadxlimi2o4dhxi5zqpzqnqhfc5olpz5jl4qecy4rp4rkyfchf7odkbqhob/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4ngmcfovez","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnlrsk45iv6i","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.813227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo35yb5xe4y5hbz2amdf4nzt2wbjzemxylcbuakn3anoloc7rdc5qknit7czctwvie/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnlrsk45iv6i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjwonznvxhfm","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.012624Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohsok6mg4kofwjgpiu7tbz3z5ohhc42iduah6zxz7rxctkcomfyzx5utdzzcvonmz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjwonznvxhfm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulte33hczi5bqg","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8444391Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6gqgab64fyzl734vunv4x5icbqymrupovhfpb2vroj4m2wthwyrmhnp2vlsi7xy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte33hczi5bqg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpc5ovgpgkde","etag":"W/\"datetime''2021-01-10T17%3A55%3A37.2785201Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoohifemlsjo3xzrik5634jk57y7ks2tu3kurincl6q6ywnm2t2tre35ghkfq3yroa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpc5ovgpgkde","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxw7ernlqmb3","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.8875164Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp7lqsusvjyopu6izt4qmp2us2372vudbaieylbejw7mkhxv5yc54bal7e3z7b4kqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxw7ernlqmb3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7lbokail5d4","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3236668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.RecoveryServices/vaults/clitest-vault7lbokail5d4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultphhdbykx4jt","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9142756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultphhdbykx4jt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultx2jd5l4kpuq","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.5411469Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4r5sp2rw26xgyv3ry3czw72t35hfmpnld4k2xf7vqwd6e6gvyhavpvkgypvpms7g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx2jd5l4kpuq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxgggo6obmge","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.2588727Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq7z2f6xakf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgggo6obmge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault542uowsygix","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1607369Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.RecoveryServices/vaults/clitest-vault542uowsygix","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu4c2x7tachz","etag":"W/\"datetime''2021-01-09T16%3A42%3A20.6221849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqozivfz7cvfzigvzfi7qzm6oazhemnmqsl2r5pstmw5u42aprlz5n34kfr3juqcyh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu4c2x7tachz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzbutyxwykn5","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.8865027Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr6n3g5bmo77wyrmdopwkqtngr7ysjgao2v7i4e2hmtqjlmdxtahy7ryaa56nscwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbutyxwykn5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj4tk2etksoe","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.1307363Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrji2rvsstak74vd7u6jtxhrv7tpmor5t27ybqzq6gmvzi4d6uszx4xczcsxh6twt5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj4tk2etksoe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultffztcamksk2","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0738895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrwdyzk7pzd7e6h5me5idpqckp4gwlsjohfo6bps2nrp5o6j7upietuvqpmkmwn54p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultffztcamksk2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4bfjnrbb447","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.3089206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5ohknj4mi/providers/Microsoft.RecoveryServices/vaults/clitest-vault4bfjnrbb447","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulteddpkaxths2","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.49283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7lqkysvww/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteddpkaxths2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultligftfuozzs","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.6062473Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsi44xot3of/providers/Microsoft.RecoveryServices/vaults/clitest-vaultligftfuozzs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta5f5nzdvvku","etag":"W/\"datetime''2021-01-11T05%3A07%3A01.1574617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsizffjmto327o6fzaplyxds7vwzfv7pf6sy3cslmk5im3bu3nzchseids2vba4pb6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta5f5nzdvvku","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulttwfjblszvam","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9613203Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqav3wldo7/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttwfjblszvam","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulterxnp5nbhjk","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.9986235Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4rjejvgoorkbs65fbm4mgz5gddesoxdz7y4oum4o6dy6ccu6e2ytbfe5lnsfkdlq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterxnp5nbhjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault53mrvgdggaj","etag":"W/\"datetime''2021-01-10T05%3A33%3A28.8946127Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlspgd4bkxcozrmer6ehqmp5e7fz5cn4qrprhlf3435pvit56ai2qb3vhkquefaia/providers/Microsoft.RecoveryServices/vaults/clitest-vault53mrvgdggaj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpvkojszsw45","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0808958Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5b4jlr2b4i4en4yt5565tdozabduljfj22k7hlnrhzr7st2fvebq4w4n4xekqpzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpvkojszsw45","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpyvjmigegvo","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1036822Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpyvjmigegvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlhi45vy3udq","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.053409Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlhi45vy3udq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmh5n35aaow6","etag":"W/\"datetime''2021-01-07T19%3A28%3A24.2834211Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyq7wzdlnegktw6aadl2z3w3l32uyzoms7i5gq5rhgkuvzoeb75dcroquj7c7ok2qj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmh5n35aaow6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqadnbffxljk","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.6152432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7c2ggv4m537qjgnox64jre3gd6ulzt3uqj6y2w2amvrowbht5ppwdmi42emh66zv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqadnbffxljk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6j5ywfo7of7","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.3779895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbpnjfiq7qn4zu5cnjzpdqyztkiir23o576j3kgqjgeg4oypv76r2ubm3uua3upn5/providers/Microsoft.RecoveryServices/vaults/clitest-vault6j5ywfo7of7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3gcnxkg5umf","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.4090038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzhpcwbvjw6suhxpf5x5vlykbizgmwuhguc42u5s3sdi6kqrw7ayah4easunhw3zeh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3gcnxkg5umf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultagqnmakqvlg","etag":"W/\"datetime''2021-01-07T09%3A24%3A46.6598763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzp3dtvw2ofzomgvemjy3cp4wtygymmjbzr5ry2an2xfvnsgxj7dr4i7yljjnjpgbx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultagqnmakqvlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfyr4v7mjlv7","etag":"W/\"datetime''2021-01-11T05%3A28%3A15.6870568Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzwc5pf3r5cb44nk4rze35edkdviu7r3pygkgxxocwrlauqbua3gztgw52jtlndhwl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfyr4v7mjlv7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"mayaggar-vault","etag":"W/\"datetime''2020-01-27T09%3A27%3A10.5580184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarRG/providers/Microsoft.RecoveryServices/vaults/mayaggar-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"geetaVaultTest","etag":"W/\"datetime''2020-02-28T05%3A18%3A57.7162661Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/geetaVaultTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault906","etag":"W/\"datetime''2020-05-22T04%3A51%3A12.428869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg2/providers/Microsoft.RecoveryServices/vaults/vault906","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB + Used":" Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"jakavetVault","etag":"W/\"datetime''2020-04-15T14%3A45%3A31.2234657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hiagawcus-vault","etag":"W/\"datetime''2020-07-21T11%3A03%3A12.6344999Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawcus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawcus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB + Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '12035' + - '57229' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Dec 2019 11:37:49 GMT + - Mon, 11 Jan 2021 06:11:49 GMT expires: - '-1' pragma: @@ -663,16 +674,17 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 - - 0456a208-cc14-4d61-ab1a-8a13b59f6570 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 status: code: 200 message: OK @@ -690,12 +702,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -707,7 +719,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:51 GMT + - Mon, 11 Jan 2021 06:11:50 GMT expires: - '-1' pragma: @@ -722,6 +734,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -743,8 +757,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -758,7 +772,7 @@ interactions: content-length: - '0' date: - - Tue, 17 Dec 2019 11:37:55 GMT + - Mon, 11 Jan 2021 06:11:57 GMT expires: - '-1' pragma: @@ -768,7 +782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '198' + - '9' status: code: 200 message: OK @@ -786,12 +800,12 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - 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=2016-12-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureIaasVM%27%20and%20status%20eq%20%27Registered%27 response: body: string: '{"value":[]}' @@ -803,7 +817,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Dec 2019 11:37:58 GMT + - Mon, 11 Jan 2021 06:12:00 GMT expires: - '-1' pragma: @@ -818,6 +832,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -839,8 +855,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE @@ -854,7 +870,7 @@ interactions: content-length: - '0' date: - - Tue, 17 Dec 2019 11:38:05 GMT + - Mon, 11 Jan 2021 06:12:09 GMT expires: - '-1' pragma: @@ -864,7 +880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '199' + - '9' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml index 15c3639fcf4..0975fca5ee1 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;hanajb","name":"VMAppContainer;Compute;IDCDemo;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","name":"VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nopCommerceWeb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nopCommerceRG/providers/Microsoft.Compute/virtualMachines/nopCommerceWeb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ReadyDemoGroups;hanajb","name":"VMAppContainer;Compute;ReadyDemoGroups;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReadyDemoGroups/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;SAPHANABugBash;hanajb","name":"VMAppContainer;Compute;SAPHANABugBash;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SAPHANABugBash/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","name":"VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"trinadhARMpoltest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhkpolicytest/providers/Microsoft.Compute/virtualMachines/trinadhARMpoltest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsDmzVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsDmzVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgSqlVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgSqlVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNoFw1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNoFw1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgTestVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgTestVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmManaged2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmManaged2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmUnm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmUnm1"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-sql-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-sql-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-vm-ccy","name":"VMAppContainer;Compute;akneema;akneema-vm-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-vm-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;hiagaSrcRG2;PSTestVM545483","name":"VMAppContainer;Compute;hiagaSrcRG2;PSTestVM545483","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"PSTestVM545483","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483"}}]}' headers: cache-control: - no-cache content-length: - - '9277' + - '2727' content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:00 GMT + - Sat, 16 Jan 2021 17:02:19 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -52,7 +54,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": - "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy", "workloadType": "SAPHanaDatabase"}}' headers: Accept: @@ -64,22 +66,24 @@ interactions: Connection: - keep-alive Content-Length: - - '282' + - '286' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -87,11 +91,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:01 GMT + - Sat, 16 Jan 2021 17:02:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -119,18 +123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -138,11 +144,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:01 GMT + - Sat, 16 Jan 2021 17:02:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -151,6 +157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -168,18 +176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -187,11 +197,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:03 GMT + - Sat, 16 Jan 2021 17:02:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -200,6 +210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -217,18 +229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -236,11 +250,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:04 GMT + - Sat, 16 Jan 2021 17:02:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -249,6 +263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -266,18 +282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -285,11 +303,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:05 GMT + - Sat, 16 Jan 2021 17:02:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -298,6 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -315,18 +335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -334,11 +356,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:06 GMT + - Sat, 16 Jan 2021 17:02:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -347,6 +369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -364,18 +388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -383,11 +409,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:08 GMT + - Sat, 16 Jan 2021 17:02:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -396,6 +422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -413,18 +441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -432,11 +462,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:09 GMT + - Sat, 16 Jan 2021 17:02:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -445,6 +475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -462,18 +494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -481,11 +515,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:11 GMT + - Sat, 16 Jan 2021 17:02:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -494,6 +528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -511,18 +547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -530,11 +568,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:11 GMT + - Sat, 16 Jan 2021 17:02:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -543,6 +581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -560,18 +600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -579,11 +621,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:13 GMT + - Sat, 16 Jan 2021 17:02:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -592,6 +634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -609,18 +653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -628,11 +674,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:14 GMT + - Sat, 16 Jan 2021 17:02:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -641,6 +687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -658,18 +706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -677,11 +727,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:16 GMT + - Sat, 16 Jan 2021 17:02:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -690,6 +740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -707,18 +759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -726,11 +780,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:17 GMT + - Sat, 16 Jan 2021 17:02:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -739,6 +793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -756,18 +812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -775,11 +833,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:18 GMT + - Sat, 16 Jan 2021 17:02:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -788,6 +846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -805,18 +865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -824,11 +886,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:20 GMT + - Sat, 16 Jan 2021 17:02:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -837,6 +899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -854,18 +918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -873,11 +939,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:21 GMT + - Sat, 16 Jan 2021 17:02:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -886,6 +952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -903,18 +971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -922,11 +992,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:22 GMT + - Sat, 16 Jan 2021 17:02:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -935,6 +1005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -952,18 +1024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1045,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:24 GMT + - Sat, 16 Jan 2021 17:02:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -984,6 +1058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1001,18 +1077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1020,11 +1098,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:26 GMT + - Sat, 16 Jan 2021 17:02:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1033,6 +1111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1050,18 +1130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1069,11 +1151,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:27 GMT + - Sat, 16 Jan 2021 17:02:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1082,6 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1099,18 +1183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1118,11 +1204,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:29 GMT + - Sat, 16 Jan 2021 17:02:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1131,6 +1217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1148,18 +1236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1167,11 +1257,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:30 GMT + - Sat, 16 Jan 2021 17:02:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1180,6 +1270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1197,18 +1289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1216,11 +1310,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:31 GMT + - Sat, 16 Jan 2021 17:02:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1229,6 +1323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1246,18 +1342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1265,11 +1363,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:33 GMT + - Sat, 16 Jan 2021 17:02:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1278,6 +1376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1295,18 +1395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1314,11 +1416,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:33 GMT + - Sat, 16 Jan 2021 17:03:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1327,6 +1429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1344,18 +1448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1363,11 +1469,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:35 GMT + - Sat, 16 Jan 2021 17:03:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1376,6 +1482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1393,18 +1501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1412,11 +1522,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:37 GMT + - Sat, 16 Jan 2021 17:03:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1425,6 +1535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1442,18 +1554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1461,11 +1575,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:38 GMT + - Sat, 16 Jan 2021 17:03:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1474,6 +1588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1491,18 +1607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1510,11 +1628,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:40 GMT + - Sat, 16 Jan 2021 17:03:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1523,6 +1641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1540,18 +1660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1559,11 +1681,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:41 GMT + - Sat, 16 Jan 2021 17:03:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1572,6 +1694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1589,18 +1713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1608,11 +1734,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:42 GMT + - Sat, 16 Jan 2021 17:03:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1621,6 +1747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1638,18 +1766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1657,11 +1787,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:45 GMT + - Sat, 16 Jan 2021 17:03:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1670,6 +1800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1687,18 +1819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1706,11 +1840,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:47 GMT + - Sat, 16 Jan 2021 17:03:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1719,6 +1853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1736,18 +1872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1755,11 +1893,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:48 GMT + - Sat, 16 Jan 2021 17:03:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1768,6 +1906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1785,18 +1925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1804,11 +1946,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:49 GMT + - Sat, 16 Jan 2021 17:03:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1817,6 +1959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1834,18 +1978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1853,11 +1999,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:50 GMT + - Sat, 16 Jan 2021 17:03:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1866,6 +2012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1883,18 +2031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1902,11 +2052,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:52 GMT + - Sat, 16 Jan 2021 17:03:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1915,6 +2065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1932,18 +2084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1951,11 +2105,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:54 GMT + - Sat, 16 Jan 2021 17:03:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -1964,6 +2118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -1981,18 +2137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2000,11 +2158,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:55 GMT + - Sat, 16 Jan 2021 17:03:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2013,6 +2171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2030,18 +2190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2049,11 +2211,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:56 GMT + - Sat, 16 Jan 2021 17:03:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2062,6 +2224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2079,18 +2243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2098,11 +2264,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:58 GMT + - Sat, 16 Jan 2021 17:03:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2111,6 +2277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2128,18 +2296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2147,11 +2317,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:34:59 GMT + - Sat, 16 Jan 2021 17:03:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2160,6 +2330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2177,18 +2349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2196,11 +2370,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:00 GMT + - Sat, 16 Jan 2021 17:03:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2209,6 +2383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2226,18 +2402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2245,11 +2423,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:02 GMT + - Sat, 16 Jan 2021 17:03:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2258,6 +2436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2275,18 +2455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2294,11 +2476,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:04 GMT + - Sat, 16 Jan 2021 17:03:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2307,6 +2489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2324,18 +2508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2343,11 +2529,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:05 GMT + - Sat, 16 Jan 2021 17:03:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2356,6 +2542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2373,18 +2561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2392,11 +2582,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:06 GMT + - Sat, 16 Jan 2021 17:03:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2405,6 +2595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2422,18 +2614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2441,11 +2635,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:07 GMT + - Sat, 16 Jan 2021 17:03:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2454,6 +2648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2471,18 +2667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2490,11 +2688,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:09 GMT + - Sat, 16 Jan 2021 17:03:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2503,6 +2701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2520,18 +2720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2539,11 +2741,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:10 GMT + - Sat, 16 Jan 2021 17:03:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2552,6 +2754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2569,18 +2773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2588,11 +2794,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:12 GMT + - Sat, 16 Jan 2021 17:03:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2601,6 +2807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2618,18 +2826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2637,11 +2847,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:13 GMT + - Sat, 16 Jan 2021 17:03:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2650,6 +2860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2667,18 +2879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2686,11 +2900,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:15 GMT + - Sat, 16 Jan 2021 17:03:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2699,6 +2913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2716,18 +2932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2735,11 +2953,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:16 GMT + - Sat, 16 Jan 2021 17:03:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2748,6 +2966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2765,18 +2985,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2784,11 +3006,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:17 GMT + - Sat, 16 Jan 2021 17:03:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2797,6 +3019,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -2814,18 +3038,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2833,11 +3059,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:19 GMT + - Sat, 16 Jan 2021 17:03:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2846,6 +3072,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -2863,18 +3091,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2882,11 +3112,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:20 GMT + - Sat, 16 Jan 2021 17:03:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2895,6 +3125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -2912,18 +3144,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2931,11 +3165,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:22 GMT + - Sat, 16 Jan 2021 17:03:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2944,6 +3178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -2961,18 +3197,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2980,11 +3218,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:24 GMT + - Sat, 16 Jan 2021 17:03:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -2993,6 +3231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3010,18 +3250,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3029,11 +3271,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:25 GMT + - Sat, 16 Jan 2021 17:03:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -3042,6 +3284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -3059,18 +3303,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3078,11 +3324,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:26 GMT + - Sat, 16 Jan 2021 17:03:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 pragma: - no-cache server: @@ -3091,6 +3337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -3108,45 +3356,5565 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:03: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '88' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:03: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '87' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '86' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '85' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '84' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '83' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '82' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '81' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '80' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '79' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '78' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '77' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '76' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '75' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '74' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '73' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '72' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '71' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '70' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '69' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '68' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '67' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '66' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '65' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '64' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '63' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '62' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '61' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '60' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '59' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '58' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '57' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '56' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '55' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '54' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '53' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '52' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '51' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '50' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '49' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:04: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '48' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '47' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '46' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '45' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '44' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '43' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '42' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '41' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '40' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '39' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '38' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '37' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '36' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '35' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '34' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '33' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '32' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '31' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '30' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '29' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '28' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '27' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '26' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '25' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '24' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '23' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '22' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '21' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '20' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '19' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '18' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '17' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '16' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '15' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '14' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '13' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '12' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '11' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:05: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '10' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '9' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '8' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '7' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '6' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '5' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '4' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '3' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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: + - '2' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/a9bef976-97e1-4441-9f82-29ea6b59cfde?api-version=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: + - '1' + 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: + - -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1140' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: + - '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 show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1128' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: + - '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 show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1128' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: + - '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 list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1140' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1140' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy", + "workloadType": "SAPHanaDatabase", "operationType": "Reregister"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + Content-Length: + - '317' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/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=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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-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 container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1112' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:27 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3155,49 +8923,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '3350' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:28 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3206,49 +8976,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container re-register Connection: - keep-alive ParameterSetName: - - -n -v -g -b + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1112' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:29 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3257,49 +9029,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container re-register Connection: - keep-alive ParameterSetName: - - -n -v -g -b + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1112' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:29 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3308,49 +9082,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '3350' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:30 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '134' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -3363,49 +9192,49 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '3350' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:29 GMT + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": - "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", - "workloadType": "SAPHanaDatabase", "operationType": "Reregister"}}' + body: null headers: Accept: - application/json @@ -3415,23 +9244,21 @@ interactions: - backup container re-register Connection: - keep-alive - Content-Length: - - '313' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3439,11 +9266,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:30 GMT + - Sat, 16 Jan 2021 17:06:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3452,8 +9279,167 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:06: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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 re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:07: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '130' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type --workload-type -y --container-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:07: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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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: + - '129' x-powered-by: - ASP.NET status: @@ -3471,18 +9457,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3490,11 +9478,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:31 GMT + - Sat, 16 Jan 2021 17:07:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3503,6 +9491,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -3520,18 +9510,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3539,11 +9531,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:32 GMT + - Sat, 16 Jan 2021 17:07:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3552,6 +9544,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -3569,18 +9563,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3588,11 +9584,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:33 GMT + - Sat, 16 Jan 2021 17:07:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3601,6 +9597,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -3618,18 +9616,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3637,11 +9637,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:35 GMT + - Sat, 16 Jan 2021 17:07:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3650,6 +9650,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -3667,18 +9669,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3686,11 +9690,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:36 GMT + - Sat, 16 Jan 2021 17:07:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3699,6 +9703,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -3716,18 +9722,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3735,11 +9743,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:38 GMT + - Sat, 16 Jan 2021 17:07:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3748,6 +9756,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -3765,18 +9775,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3784,11 +9796,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:39 GMT + - Sat, 16 Jan 2021 17:07:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3797,6 +9809,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -3814,18 +9828,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3833,11 +9849,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:40 GMT + - Sat, 16 Jan 2021 17:07:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3846,6 +9862,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -3863,18 +9881,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3882,11 +9902,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:42 GMT + - Sat, 16 Jan 2021 17:07:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3895,6 +9915,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -3912,18 +9934,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3931,11 +9955,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:43 GMT + - Sat, 16 Jan 2021 17:07:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3944,6 +9968,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -3961,18 +9987,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3980,11 +10008,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:45 GMT + - Sat, 16 Jan 2021 17:07:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -3993,6 +10021,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -4010,18 +10040,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4029,11 +10061,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:46 GMT + - Sat, 16 Jan 2021 17:07:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4042,6 +10074,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -4059,18 +10093,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4078,11 +10114,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:48 GMT + - Sat, 16 Jan 2021 17:07:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4091,6 +10127,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -4108,18 +10146,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4127,11 +10167,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:48 GMT + - Sat, 16 Jan 2021 17:07:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4140,6 +10180,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -4157,18 +10199,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4176,11 +10220,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:50 GMT + - Sat, 16 Jan 2021 17:07:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4189,6 +10233,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -4206,18 +10252,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4225,11 +10273,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:52 GMT + - Sat, 16 Jan 2021 17:07:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4238,6 +10286,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -4255,18 +10305,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4274,11 +10326,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:53 GMT + - Sat, 16 Jan 2021 17:07:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4287,6 +10339,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -4304,18 +10358,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4323,11 +10379,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:54 GMT + - Sat, 16 Jan 2021 17:07:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4336,6 +10392,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -4353,18 +10411,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4372,11 +10432,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:55 GMT + - Sat, 16 Jan 2021 17:07:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4385,6 +10445,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -4402,18 +10464,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4421,11 +10485,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:56 GMT + - Sat, 16 Jan 2021 17:07:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4434,6 +10498,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -4451,18 +10517,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4470,11 +10538,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:58 GMT + - Sat, 16 Jan 2021 17:07:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4483,6 +10551,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -4500,18 +10570,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4519,11 +10591,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:35:59 GMT + - Sat, 16 Jan 2021 17:07:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4532,6 +10604,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -4549,18 +10623,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4568,11 +10644,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:00 GMT + - Sat, 16 Jan 2021 17:07:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4581,6 +10657,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -4598,18 +10676,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4617,11 +10697,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:02 GMT + - Sat, 16 Jan 2021 17:07:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4630,6 +10710,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -4647,18 +10729,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4666,11 +10750,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:03 GMT + - Sat, 16 Jan 2021 17:07:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4679,6 +10763,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -4696,18 +10782,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4715,11 +10803,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:04 GMT + - Sat, 16 Jan 2021 17:07:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4728,6 +10816,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -4745,18 +10835,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4764,11 +10856,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:06 GMT + - Sat, 16 Jan 2021 17:07:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4777,6 +10869,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -4794,18 +10888,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4813,11 +10909,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:07 GMT + - Sat, 16 Jan 2021 17:07:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4826,6 +10922,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -4843,18 +10941,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4862,11 +10962,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:08 GMT + - Sat, 16 Jan 2021 17:07:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4875,6 +10975,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -4892,18 +10994,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4911,11 +11015,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:10 GMT + - Sat, 16 Jan 2021 17:07:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4924,6 +11028,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -4941,18 +11047,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4960,11 +11068,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:11 GMT + - Sat, 16 Jan 2021 17:07:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -4973,6 +11081,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -4990,18 +11100,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5009,11 +11121,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:13 GMT + - Sat, 16 Jan 2021 17:07:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5022,6 +11134,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -5039,18 +11153,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5058,11 +11174,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:14 GMT + - Sat, 16 Jan 2021 17:07:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5071,6 +11187,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -5088,18 +11206,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5107,11 +11227,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:16 GMT + - Sat, 16 Jan 2021 17:08:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5120,6 +11240,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -5137,18 +11259,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5156,11 +11280,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:17 GMT + - Sat, 16 Jan 2021 17:08:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5169,6 +11293,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -5186,18 +11312,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5205,11 +11333,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:19 GMT + - Sat, 16 Jan 2021 17:08:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5218,6 +11346,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -5235,18 +11365,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5254,11 +11386,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:20 GMT + - Sat, 16 Jan 2021 17:08:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5267,6 +11399,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -5284,18 +11418,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5303,11 +11439,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:21 GMT + - Sat, 16 Jan 2021 17:08:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5316,6 +11452,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -5333,18 +11471,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5352,11 +11492,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:23 GMT + - Sat, 16 Jan 2021 17:08:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5365,6 +11505,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -5382,18 +11524,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5401,11 +11545,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:24 GMT + - Sat, 16 Jan 2021 17:08:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5414,6 +11558,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -5431,18 +11577,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5450,11 +11598,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:26 GMT + - Sat, 16 Jan 2021 17:08:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5463,6 +11611,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -5480,18 +11630,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5499,11 +11651,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:28 GMT + - Sat, 16 Jan 2021 17:08:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5512,6 +11664,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -5529,18 +11683,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5548,11 +11704,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:29 GMT + - Sat, 16 Jan 2021 17:08:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5561,6 +11717,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -5578,18 +11736,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5597,11 +11757,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:30 GMT + - Sat, 16 Jan 2021 17:08:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5610,6 +11770,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -5627,18 +11789,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5646,11 +11810,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:32 GMT + - Sat, 16 Jan 2021 17:08:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5659,6 +11823,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -5676,18 +11842,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5695,11 +11863,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:34 GMT + - Sat, 16 Jan 2021 17:08:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5708,6 +11876,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -5725,18 +11895,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5744,11 +11916,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:34 GMT + - Sat, 16 Jan 2021 17:08:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 pragma: - no-cache server: @@ -5757,6 +11929,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -5774,26 +11948,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-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/9de63fbb-4b2d-4f46-a15e-276563b9f54f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1112' + - '1050' content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:36 GMT + - Sat, 16 Jan 2021 17:08:31 GMT expires: - '-1' pragma: @@ -5808,6 +11982,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -5825,26 +12001,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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-01-16T17:03:32.3251092Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3350' + - '1140' content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:36 GMT + - Sat, 16 Jan 2021 17:08:32 GMT expires: - '-1' pragma: @@ -5859,6 +12035,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5878,28 +12056,30 @@ interactions: Content-Length: - '0' ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 08 Jul 2019 05:36:37 GMT + - Sat, 16 Jan 2021 17:08:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/ed60a566-717f-4868-a782-a761bf8c710c?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -5907,7 +12087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-powered-by: - ASP.NET status: @@ -5925,18 +12105,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5944,11 +12126,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:38 GMT + - Sat, 16 Jan 2021 17:08:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -5957,6 +12139,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5974,18 +12158,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5993,11 +12179,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:39 GMT + - Sat, 16 Jan 2021 17:08:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6006,6 +12192,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6023,18 +12211,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6042,11 +12232,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:40 GMT + - Sat, 16 Jan 2021 17:08:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6055,6 +12245,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -6072,18 +12264,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6091,11 +12285,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:42 GMT + - Sat, 16 Jan 2021 17:08:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6104,6 +12298,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6121,18 +12317,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6140,11 +12338,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:43 GMT + - Sat, 16 Jan 2021 17:08:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6153,6 +12351,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6170,18 +12370,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6189,11 +12391,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:45 GMT + - Sat, 16 Jan 2021 17:08:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6202,6 +12404,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6219,18 +12423,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6238,11 +12444,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:46 GMT + - Sat, 16 Jan 2021 17:08:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6251,6 +12457,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6268,18 +12476,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6287,11 +12497,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:47 GMT + - Sat, 16 Jan 2021 17:08:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6300,6 +12510,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6317,18 +12529,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6336,11 +12550,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:48 GMT + - Sat, 16 Jan 2021 17:08:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6349,6 +12563,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6366,18 +12582,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6385,11 +12603,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:50 GMT + - Sat, 16 Jan 2021 17:08:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6398,6 +12616,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6415,18 +12635,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6434,11 +12656,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:51 GMT + - Sat, 16 Jan 2021 17:08:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6447,6 +12669,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -6464,18 +12688,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6483,11 +12709,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:52 GMT + - Sat, 16 Jan 2021 17:08:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6496,6 +12722,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -6513,18 +12741,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6532,11 +12762,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:54 GMT + - Sat, 16 Jan 2021 17:08:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6545,6 +12775,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -6562,18 +12794,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6581,11 +12815,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:55 GMT + - Sat, 16 Jan 2021 17:08:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6594,6 +12828,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -6611,18 +12847,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6630,11 +12868,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:56 GMT + - Sat, 16 Jan 2021 17:08:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6643,6 +12881,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -6660,18 +12900,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6679,11 +12921,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:58 GMT + - Sat, 16 Jan 2021 17:08:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6692,6 +12934,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -6709,18 +12953,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6728,11 +12974,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:36:59 GMT + - Sat, 16 Jan 2021 17:09:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6741,6 +12987,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -6758,18 +13006,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6777,11 +13027,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:00 GMT + - Sat, 16 Jan 2021 17:09:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6790,6 +13040,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -6807,18 +13059,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6826,11 +13080,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:02 GMT + - Sat, 16 Jan 2021 17:09:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6839,6 +13093,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -6856,18 +13112,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6875,11 +13133,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:04 GMT + - Sat, 16 Jan 2021 17:09:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6888,6 +13146,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -6905,18 +13165,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6924,11 +13186,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:05 GMT + - Sat, 16 Jan 2021 17:09:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6937,6 +13199,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -6954,18 +13218,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6973,11 +13239,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:07 GMT + - Sat, 16 Jan 2021 17:09:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -6986,6 +13252,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -7003,18 +13271,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7022,11 +13292,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:08 GMT + - Sat, 16 Jan 2021 17:09:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7035,6 +13305,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -7052,18 +13324,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7071,11 +13345,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:10 GMT + - Sat, 16 Jan 2021 17:09:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7084,6 +13358,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -7101,18 +13377,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7120,11 +13398,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:11 GMT + - Sat, 16 Jan 2021 17:09:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7133,6 +13411,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -7150,18 +13430,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7169,11 +13451,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:12 GMT + - Sat, 16 Jan 2021 17:09:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7182,6 +13464,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -7199,18 +13483,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7218,11 +13504,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:13 GMT + - Sat, 16 Jan 2021 17:09:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7231,6 +13517,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -7248,18 +13536,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7267,11 +13557,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:15 GMT + - Sat, 16 Jan 2021 17:09:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7280,6 +13570,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -7297,18 +13589,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7316,11 +13610,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:16 GMT + - Sat, 16 Jan 2021 17:09:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7329,6 +13623,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -7346,18 +13642,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7365,11 +13663,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:18 GMT + - Sat, 16 Jan 2021 17:09:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7378,6 +13676,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -7395,18 +13695,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7414,11 +13716,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:19 GMT + - Sat, 16 Jan 2021 17:09:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7427,6 +13729,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -7444,18 +13748,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7463,11 +13769,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:20 GMT + - Sat, 16 Jan 2021 17:09:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7476,6 +13782,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -7493,18 +13801,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7512,11 +13822,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:22 GMT + - Sat, 16 Jan 2021 17:09:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7525,6 +13835,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -7542,18 +13854,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7561,11 +13875,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:23 GMT + - Sat, 16 Jan 2021 17:09:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7574,6 +13888,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -7591,18 +13907,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7610,11 +13928,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:25 GMT + - Sat, 16 Jan 2021 17:09:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7623,6 +13941,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -7640,18 +13960,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7659,11 +13981,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:26 GMT + - Sat, 16 Jan 2021 17:09:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7672,6 +13994,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -7689,18 +14013,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7708,11 +14034,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:28 GMT + - Sat, 16 Jan 2021 17:09:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7721,6 +14047,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -7738,18 +14066,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7757,11 +14087,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:29 GMT + - Sat, 16 Jan 2021 17:09:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7770,6 +14100,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -7787,18 +14119,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7806,11 +14140,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:31 GMT + - Sat, 16 Jan 2021 17:09:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7819,6 +14153,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -7836,18 +14172,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7855,11 +14193,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:32 GMT + - Sat, 16 Jan 2021 17:09:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 pragma: - no-cache server: @@ -7868,6 +14206,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -7885,14 +14225,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-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/ed60a566-717f-4868-a782-a761bf8c710c?api-version=2020-10-01 response: body: string: '' @@ -7902,7 +14242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 05:37:33 GMT + - Sat, 16 Jan 2021 17:09:37 GMT expires: - '-1' pragma: @@ -7911,6 +14251,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -7928,26 +14270,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2237' + - '12' content-type: - application/json date: - - Mon, 08 Jul 2019 05:37:34 GMT + - Sat, 16 Jan 2021 17:09:38 GMT expires: - '-1' pragma: @@ -7962,6 +14304,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml index af12a5c5273..e29f9f580dd 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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-01-13T09:26:43.2071811Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3511' + - '1140' content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:19 GMT + - Wed, 13 Jan 2021 09:50:49 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -58,30 +60,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;systemdb","name":"saphanadatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"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/protectableItems/saphanadbinstance;hxe;saphanadbinstance","name":"saphanadbinstance;hxe;saphanadbinstance","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"hxehost","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDBInstance","friendlyName":"HXE","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '6877' + - '3143' content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:19 GMT + - Wed, 13 Jan 2021 09:50:51 GMT expires: - '-1' pragma: @@ -96,6 +98,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -113,26 +117,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1718' + - '1992' content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:20 GMT + - Wed, 13 Jan 2021 09:50:53 GMT expires: - '-1' pragma: @@ -147,6 +151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -154,7 +160,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "SAPHanaDatabase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy", "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' headers: Accept: @@ -166,34 +172,34 @@ interactions: Connection: - keep-alive Content-Length: - - '325' + - '330' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-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/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 09 Oct 2019 12:41:20 GMT + - Wed, 13 Jan 2021 09:50:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-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/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -219,17 +225,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -238,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:21 GMT + - Wed, 13 Jan 2021 09:50:58 GMT expires: - '-1' pragma: @@ -253,6 +259,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -270,17 +278,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -289,7 +297,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:22 GMT + - Wed, 13 Jan 2021 09:51:00 GMT expires: - '-1' pragma: @@ -304,6 +312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -321,17 +331,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -340,7 +350,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:23 GMT + - Wed, 13 Jan 2021 09:51:01 GMT expires: - '-1' pragma: @@ -355,6 +365,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -372,17 +384,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -391,7 +403,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:25 GMT + - Wed, 13 Jan 2021 09:51:02 GMT expires: - '-1' pragma: @@ -406,6 +418,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -423,17 +437,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -442,7 +456,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:26 GMT + - Wed, 13 Jan 2021 09:51:04 GMT expires: - '-1' pragma: @@ -457,6 +471,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -474,17 +490,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -493,7 +509,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:28 GMT + - Wed, 13 Jan 2021 09:51:05 GMT expires: - '-1' pragma: @@ -508,6 +524,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -525,17 +543,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -544,7 +562,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:30 GMT + - Wed, 13 Jan 2021 09:51:07 GMT expires: - '-1' pragma: @@ -559,6 +577,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -576,17 +596,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -595,7 +615,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:31 GMT + - Wed, 13 Jan 2021 09:51:08 GMT expires: - '-1' pragma: @@ -610,6 +630,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -627,17 +649,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -646,7 +668,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:32 GMT + - Wed, 13 Jan 2021 09:51:10 GMT expires: - '-1' pragma: @@ -661,6 +683,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -678,17 +702,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -697,7 +721,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:34 GMT + - Wed, 13 Jan 2021 09:51:11 GMT expires: - '-1' pragma: @@ -712,6 +736,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -729,17 +755,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -748,7 +774,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:35 GMT + - Wed, 13 Jan 2021 09:51:13 GMT expires: - '-1' pragma: @@ -763,6 +789,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -780,17 +808,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -799,7 +827,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:36 GMT + - Wed, 13 Jan 2021 09:51:14 GMT expires: - '-1' pragma: @@ -814,6 +842,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -831,17 +861,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -850,7 +880,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:38 GMT + - Wed, 13 Jan 2021 09:51:15 GMT expires: - '-1' pragma: @@ -865,6 +895,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -882,17 +914,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -901,7 +933,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:39 GMT + - Wed, 13 Jan 2021 09:51:18 GMT expires: - '-1' pragma: @@ -916,6 +948,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -933,17 +967,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -952,7 +986,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:40 GMT + - Wed, 13 Jan 2021 09:51:19 GMT expires: - '-1' pragma: @@ -967,6 +1001,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -984,17 +1020,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1003,7 +1039,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:42 GMT + - Wed, 13 Jan 2021 09:51:20 GMT expires: - '-1' pragma: @@ -1018,6 +1054,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -1035,17 +1073,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1054,7 +1092,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:43 GMT + - Wed, 13 Jan 2021 09:51:22 GMT expires: - '-1' pragma: @@ -1069,6 +1107,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -1086,17 +1126,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1105,7 +1145,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:44 GMT + - Wed, 13 Jan 2021 09:51:23 GMT expires: - '-1' pragma: @@ -1120,6 +1160,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1137,17 +1179,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1156,7 +1198,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:46 GMT + - Wed, 13 Jan 2021 09:51:24 GMT expires: - '-1' pragma: @@ -1171,6 +1213,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1188,17 +1232,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1207,7 +1251,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:47 GMT + - Wed, 13 Jan 2021 09:51:27 GMT expires: - '-1' pragma: @@ -1222,6 +1266,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1239,17 +1285,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1258,7 +1304,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:48 GMT + - Wed, 13 Jan 2021 09:51:28 GMT expires: - '-1' pragma: @@ -1273,6 +1319,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1290,17 +1338,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1309,7 +1357,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:50 GMT + - Wed, 13 Jan 2021 09:51:29 GMT expires: - '-1' pragma: @@ -1324,6 +1372,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1341,17 +1391,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1360,7 +1410,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:51 GMT + - Wed, 13 Jan 2021 09:51:31 GMT expires: - '-1' pragma: @@ -1375,6 +1425,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1392,17 +1444,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1411,7 +1463,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:41:58 GMT + - Wed, 13 Jan 2021 09:51:32 GMT expires: - '-1' pragma: @@ -1426,6 +1478,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1443,17 +1497,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1462,7 +1516,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:00 GMT + - Wed, 13 Jan 2021 09:51:34 GMT expires: - '-1' pragma: @@ -1477,6 +1531,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1494,17 +1550,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1513,7 +1569,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:01 GMT + - Wed, 13 Jan 2021 09:51:35 GMT expires: - '-1' pragma: @@ -1528,6 +1584,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1545,17 +1603,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1564,7 +1622,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:02 GMT + - Wed, 13 Jan 2021 09:51:37 GMT expires: - '-1' pragma: @@ -1579,6 +1637,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1596,17 +1656,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1615,7 +1675,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:04 GMT + - Wed, 13 Jan 2021 09:51:38 GMT expires: - '-1' pragma: @@ -1630,6 +1690,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1647,17 +1709,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1666,7 +1728,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:05 GMT + - Wed, 13 Jan 2021 09:51:39 GMT expires: - '-1' pragma: @@ -1681,6 +1743,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1698,17 +1762,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1717,7 +1781,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:06 GMT + - Wed, 13 Jan 2021 09:51:41 GMT expires: - '-1' pragma: @@ -1732,6 +1796,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1749,17 +1815,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1768,7 +1834,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:09 GMT + - Wed, 13 Jan 2021 09:51:42 GMT expires: - '-1' pragma: @@ -1783,6 +1849,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1800,17 +1868,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1819,7 +1887,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:10 GMT + - Wed, 13 Jan 2021 09:51:44 GMT expires: - '-1' pragma: @@ -1834,6 +1902,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1851,17 +1921,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1870,7 +1940,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:11 GMT + - Wed, 13 Jan 2021 09:51:45 GMT expires: - '-1' pragma: @@ -1885,6 +1955,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1902,17 +1974,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1921,7 +1993,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:13 GMT + - Wed, 13 Jan 2021 09:51:47 GMT expires: - '-1' pragma: @@ -1936,6 +2008,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1953,17 +2027,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +2046,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:14 GMT + - Wed, 13 Jan 2021 09:51:49 GMT expires: - '-1' pragma: @@ -1987,6 +2061,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -2004,17 +2080,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2023,7 +2099,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:15 GMT + - Wed, 13 Jan 2021 09:51:50 GMT expires: - '-1' pragma: @@ -2038,6 +2114,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -2055,17 +2133,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2074,7 +2152,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:17 GMT + - Wed, 13 Jan 2021 09:51:51 GMT expires: - '-1' pragma: @@ -2089,6 +2167,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -2106,17 +2186,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2125,7 +2205,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:17 GMT + - Wed, 13 Jan 2021 09:51:52 GMT expires: - '-1' pragma: @@ -2140,6 +2220,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -2157,17 +2239,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2176,7 +2258,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:19 GMT + - Wed, 13 Jan 2021 09:51:54 GMT expires: - '-1' pragma: @@ -2191,6 +2273,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2208,17 +2292,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2227,7 +2311,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:21 GMT + - Wed, 13 Jan 2021 09:51:55 GMT expires: - '-1' pragma: @@ -2242,6 +2326,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2259,17 +2345,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2278,7 +2364,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:22 GMT + - Wed, 13 Jan 2021 09:51:58 GMT expires: - '-1' pragma: @@ -2293,6 +2379,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2310,17 +2398,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2329,7 +2417,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:23 GMT + - Wed, 13 Jan 2021 09:51:59 GMT expires: - '-1' pragma: @@ -2344,6 +2432,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2361,17 +2451,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2380,7 +2470,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:25 GMT + - Wed, 13 Jan 2021 09:52:00 GMT expires: - '-1' pragma: @@ -2395,6 +2485,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2412,17 +2504,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2431,7 +2523,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:25 GMT + - Wed, 13 Jan 2021 09:52:01 GMT expires: - '-1' pragma: @@ -2446,6 +2538,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2463,17 +2557,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2482,7 +2576,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:27 GMT + - Wed, 13 Jan 2021 09:52:03 GMT expires: - '-1' pragma: @@ -2497,6 +2591,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2514,17 +2610,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2533,7 +2629,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:28 GMT + - Wed, 13 Jan 2021 09:52:04 GMT expires: - '-1' pragma: @@ -2548,6 +2644,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2565,17 +2663,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2584,7 +2682,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:30 GMT + - Wed, 13 Jan 2021 09:52:06 GMT expires: - '-1' pragma: @@ -2599,6 +2697,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2616,17 +2716,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2635,7 +2735,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:31 GMT + - Wed, 13 Jan 2021 09:52:08 GMT expires: - '-1' pragma: @@ -2650,6 +2750,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2667,17 +2769,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2686,7 +2788,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:32 GMT + - Wed, 13 Jan 2021 09:52:09 GMT expires: - '-1' pragma: @@ -2701,6 +2803,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2718,17 +2822,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"InProgress","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2737,7 +2841,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:34 GMT + - Wed, 13 Jan 2021 09:52:11 GMT expires: - '-1' pragma: @@ -2752,6 +2856,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2769,17 +2875,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/e2abf04d-1c71-4a85-a9b9-f2aa328d3462?api-version=2020-10-01 response: body: - string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"Succeeded","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"2019-10-09T12:41:21.1975718Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5021c861-203d-4eb3-8081-eb15cd141103"}}' + string: '{"id":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","name":"e2abf04d-1c71-4a85-a9b9-f2aa328d3462","status":"Succeeded","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"2021-01-13T09:50:56.6616352Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"38b9ddfe-6773-49ee-a783-c51f2b983bdd"}}' headers: cache-control: - no-cache @@ -2788,7 +2894,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:35 GMT + - Wed, 13 Jan 2021 09:52:12 GMT expires: - '-1' pragma: @@ -2803,6 +2909,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2820,27 +2928,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5021c861-203d-4eb3-8081-eb15cd141103?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/38b9ddfe-6773-49ee-a783-c51f2b983bdd?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/5021c861-203d-4eb3-8081-eb15cd141103","name":"5021c861-203d-4eb3-8081-eb15cd141103","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.6999108S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"2019-10-09T12:42:34.8974826Z","activityId":"180fd540-ea92-11e9-a8e6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/38b9ddfe-6773-49ee-a783-c51f2b983bdd","name":"38b9ddfe-6773-49ee-a783-c51f2b983bdd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M15.796729S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-13T09:50:56.6616352Z","endTime":"2021-01-13T09:52:12.4583642Z","activityId":"d17bbe0b-5584-11eb-b760-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '743' + - '759' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:35 GMT + - Wed, 13 Jan 2021 09:52:14 GMT expires: - '-1' pragma: @@ -2856,6 +2964,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2875,24 +2985,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","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-01-13T09:26:43.2071811Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1273' + - '1128' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:36 GMT + - Wed, 13 Jan 2021 09:52:15 GMT expires: - '-1' pragma: @@ -2907,6 +3017,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2926,24 +3038,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1376' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:37 GMT + - Wed, 13 Jan 2021 09:52:17 GMT expires: - '-1' pragma: @@ -2958,6 +3070,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2977,24 +3091,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","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-01-13T09:26:43.2071811Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1273' + - '1128' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:37 GMT + - Wed, 13 Jan 2021 09:52:20 GMT expires: - '-1' pragma: @@ -3009,6 +3123,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3028,24 +3144,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1376' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:38 GMT + - Wed, 13 Jan 2021 09:52:21 GMT expires: - '-1' pragma: @@ -3060,6 +3176,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3079,24 +3197,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1376' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:38 GMT + - Wed, 13 Jan 2021 09:52:23 GMT expires: - '-1' pragma: @@ -3111,6 +3229,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3130,24 +3250,24 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + 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","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":"1605632849","protectedItemHealthStatus":"IRPending","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"}}]}' headers: cache-control: - no-cache content-length: - - '10071' + - '1321' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:39 GMT + - Wed, 13 Jan 2021 09:52:25 GMT expires: - '-1' pragma: @@ -3162,6 +3282,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3181,24 +3303,24 @@ interactions: ParameterSetName: - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + 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","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":"1605632849","protectedItemHealthStatus":"IRPending","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"}}]}' headers: cache-control: - no-cache content-length: - - '10071' + - '1321' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:40 GMT + - Wed, 13 Jan 2021 09:52:27 GMT expires: - '-1' pragma: @@ -3213,6 +3335,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3232,24 +3356,24 @@ interactions: ParameterSetName: - -g -v --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + 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","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":"1605632849","protectedItemHealthStatus":"IRPending","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"}}]}' headers: cache-control: - no-cache content-length: - - '10071' + - '1321' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:41 GMT + - Wed, 13 Jan 2021 09:52:28 GMT expires: - '-1' pragma: @@ -3264,6 +3388,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3283,24 +3409,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1376' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:41 GMT + - Wed, 13 Jan 2021 09:52:29 GMT expires: - '-1' pragma: @@ -3315,6 +3441,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3334,24 +3462,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":1}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '1718' + - '1992' content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:42 GMT + - Wed, 13 Jan 2021 09:52:31 GMT expires: - '-1' pragma: @@ -3366,6 +3494,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3373,15 +3503,15 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SAPHanaDatabase", "containerName": "VMAppContainer;compute;idcdemo;hanademoidc3", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3", - "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", - "protectedItemType": "AzureVmWorkloadSAPHanaDatabase", "friendlyName": "h22_restored_sarath", - "serverName": "HANADemoIDC3", "parentName": "H22", "parentType": "AzureVmWorkloadSAPHanaSystem", + "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", + "protectedItemType": "AzureVmWorkloadSAPHanaDatabase", "friendlyName": "systemdb", + "serverName": "hxehost", "parentName": "HXE", "parentType": "AzureVmWorkloadSAPHanaSystem", "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": - "IRPending", "lastBackupErrorDetail": {"code": "Success", "message": ""}, "protectedItemDataSourceId": - "726866731", "protectedItemHealthStatus": "IRPending", "extendedInfo": {"recoveryPointCount": - 0, "policyState": "Consistent"}}}' + "IRPending", "lastBackupErrorDetail": {}, "protectedItemDataSourceId": "1605632849", + "protectedItemHealthStatus": "IRPending", "extendedInfo": {"recoveryPointCount": + 0, "policyState": "Consistent"}, "kpisHealths": {}}}' headers: Accept: - application/json @@ -3392,34 +3522,34 @@ interactions: Connection: - keep-alive Content-Length: - - '993' + - '978' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-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/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 09 Oct 2019 12:42:42 GMT + - Wed, 13 Jan 2021 09:52:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-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/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3427,7 +3557,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -3447,117 +3577,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 - response: - body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 09 Oct 2019 12:42: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 - response: - body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 09 Oct 2019 12:42: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3566,7 +3594,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:46 GMT + - Wed, 13 Jan 2021 09:52:35 GMT expires: - '-1' pragma: @@ -3581,6 +3609,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -3600,15 +3630,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3617,7 +3647,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:47 GMT + - Wed, 13 Jan 2021 09:52:37 GMT expires: - '-1' pragma: @@ -3632,6 +3662,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -3651,15 +3683,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3668,7 +3700,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:49 GMT + - Wed, 13 Jan 2021 09:52:38 GMT expires: - '-1' pragma: @@ -3683,6 +3715,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -3702,15 +3736,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3719,7 +3753,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:51 GMT + - Wed, 13 Jan 2021 09:52:39 GMT expires: - '-1' pragma: @@ -3734,6 +3768,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -3753,15 +3789,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3770,7 +3806,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:52 GMT + - Wed, 13 Jan 2021 09:52:40 GMT expires: - '-1' pragma: @@ -3785,6 +3821,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -3804,15 +3842,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3821,7 +3859,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:53 GMT + - Wed, 13 Jan 2021 09:52:43 GMT expires: - '-1' pragma: @@ -3836,6 +3874,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -3855,15 +3895,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3872,7 +3912,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:55 GMT + - Wed, 13 Jan 2021 09:52:44 GMT expires: - '-1' pragma: @@ -3887,6 +3927,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -3906,15 +3948,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3923,7 +3965,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:56 GMT + - Wed, 13 Jan 2021 09:52:46 GMT expires: - '-1' pragma: @@ -3938,6 +3980,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -3957,15 +4001,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3974,7 +4018,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:58 GMT + - Wed, 13 Jan 2021 09:52:47 GMT expires: - '-1' pragma: @@ -3989,6 +4033,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -4008,15 +4054,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4025,7 +4071,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:42:59 GMT + - Wed, 13 Jan 2021 09:52:48 GMT expires: - '-1' pragma: @@ -4040,6 +4086,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -4059,15 +4107,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4076,7 +4124,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:00 GMT + - Wed, 13 Jan 2021 09:52:50 GMT expires: - '-1' pragma: @@ -4091,6 +4139,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -4110,15 +4160,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4127,7 +4177,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:02 GMT + - Wed, 13 Jan 2021 09:52:52 GMT expires: - '-1' pragma: @@ -4142,6 +4192,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -4161,15 +4213,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4178,7 +4230,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:03 GMT + - Wed, 13 Jan 2021 09:52:53 GMT expires: - '-1' pragma: @@ -4193,6 +4245,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -4212,15 +4266,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4229,7 +4283,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:05 GMT + - Wed, 13 Jan 2021 09:52:55 GMT expires: - '-1' pragma: @@ -4244,6 +4298,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -4263,15 +4319,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4280,7 +4336,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:06 GMT + - Wed, 13 Jan 2021 09:52:56 GMT expires: - '-1' pragma: @@ -4295,6 +4351,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -4314,15 +4372,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4331,7 +4389,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:08 GMT + - Wed, 13 Jan 2021 09:52:57 GMT expires: - '-1' pragma: @@ -4346,6 +4404,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -4365,15 +4425,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4382,7 +4442,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:09 GMT + - Wed, 13 Jan 2021 09:52:59 GMT expires: - '-1' pragma: @@ -4397,6 +4457,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -4416,15 +4478,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4433,7 +4495,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:10 GMT + - Wed, 13 Jan 2021 09:53:00 GMT expires: - '-1' pragma: @@ -4448,6 +4510,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -4467,15 +4531,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4484,7 +4548,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:12 GMT + - Wed, 13 Jan 2021 09:53:02 GMT expires: - '-1' pragma: @@ -4499,6 +4563,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -4518,15 +4584,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4535,7 +4601,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:13 GMT + - Wed, 13 Jan 2021 09:53:03 GMT expires: - '-1' pragma: @@ -4550,6 +4616,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -4569,15 +4637,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4586,7 +4654,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:14 GMT + - Wed, 13 Jan 2021 09:53:04 GMT expires: - '-1' pragma: @@ -4601,6 +4669,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -4620,15 +4690,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4637,7 +4707,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:15 GMT + - Wed, 13 Jan 2021 09:53:07 GMT expires: - '-1' pragma: @@ -4652,6 +4722,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -4671,15 +4743,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4688,7 +4760,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:17 GMT + - Wed, 13 Jan 2021 09:53:08 GMT expires: - '-1' pragma: @@ -4703,6 +4775,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -4722,15 +4796,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4739,7 +4813,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:18 GMT + - Wed, 13 Jan 2021 09:53:09 GMT expires: - '-1' pragma: @@ -4754,6 +4828,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -4773,15 +4849,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4790,7 +4866,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:20 GMT + - Wed, 13 Jan 2021 09:53:11 GMT expires: - '-1' pragma: @@ -4805,6 +4881,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -4824,15 +4902,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4841,7 +4919,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:21 GMT + - Wed, 13 Jan 2021 09:53:12 GMT expires: - '-1' pragma: @@ -4856,6 +4934,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -4875,15 +4955,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4892,7 +4972,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:23 GMT + - Wed, 13 Jan 2021 09:53:13 GMT expires: - '-1' pragma: @@ -4907,6 +4987,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -4926,15 +5008,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4943,7 +5025,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:25 GMT + - Wed, 13 Jan 2021 09:53:15 GMT expires: - '-1' pragma: @@ -4958,6 +5040,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -4977,15 +5061,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4994,7 +5078,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:26 GMT + - Wed, 13 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -5009,6 +5093,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -5028,15 +5114,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5045,7 +5131,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:26 GMT + - Wed, 13 Jan 2021 09:53:18 GMT expires: - '-1' pragma: @@ -5060,6 +5146,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -5079,15 +5167,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5096,7 +5184,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:28 GMT + - Wed, 13 Jan 2021 09:53:19 GMT expires: - '-1' pragma: @@ -5111,6 +5199,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -5130,15 +5220,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5147,7 +5237,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:29 GMT + - Wed, 13 Jan 2021 09:53:22 GMT expires: - '-1' pragma: @@ -5162,6 +5252,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -5181,15 +5273,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5198,7 +5290,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:31 GMT + - Wed, 13 Jan 2021 09:53:23 GMT expires: - '-1' pragma: @@ -5213,6 +5305,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -5232,15 +5326,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5249,7 +5343,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:33 GMT + - Wed, 13 Jan 2021 09:53:24 GMT expires: - '-1' pragma: @@ -5264,6 +5358,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -5283,15 +5379,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5300,7 +5396,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:33 GMT + - Wed, 13 Jan 2021 09:53:26 GMT expires: - '-1' pragma: @@ -5315,6 +5411,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -5334,15 +5432,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5351,7 +5449,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:35 GMT + - Wed, 13 Jan 2021 09:53:27 GMT expires: - '-1' pragma: @@ -5366,6 +5464,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -5385,15 +5485,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5402,7 +5502,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:37 GMT + - Wed, 13 Jan 2021 09:53:28 GMT expires: - '-1' pragma: @@ -5417,6 +5517,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -5436,15 +5538,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5453,7 +5555,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:38 GMT + - Wed, 13 Jan 2021 09:53:29 GMT expires: - '-1' pragma: @@ -5468,6 +5570,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -5487,15 +5591,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5504,7 +5608,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:39 GMT + - Wed, 13 Jan 2021 09:53:32 GMT expires: - '-1' pragma: @@ -5519,6 +5623,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -5538,15 +5644,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5555,7 +5661,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:40 GMT + - Wed, 13 Jan 2021 09:53:33 GMT expires: - '-1' pragma: @@ -5570,6 +5676,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -5589,15 +5697,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5606,7 +5714,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:42 GMT + - Wed, 13 Jan 2021 09:53:35 GMT expires: - '-1' pragma: @@ -5621,6 +5729,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -5640,15 +5750,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5657,7 +5767,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:43 GMT + - Wed, 13 Jan 2021 09:53:36 GMT expires: - '-1' pragma: @@ -5672,6 +5782,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -5691,15 +5803,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5708,7 +5820,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:44 GMT + - Wed, 13 Jan 2021 09:53:37 GMT expires: - '-1' pragma: @@ -5723,6 +5835,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -5742,15 +5856,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5759,7 +5873,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:46 GMT + - Wed, 13 Jan 2021 09:53:39 GMT expires: - '-1' pragma: @@ -5774,6 +5888,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -5793,15 +5909,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5810,7 +5926,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:47 GMT + - Wed, 13 Jan 2021 09:53:40 GMT expires: - '-1' pragma: @@ -5825,6 +5941,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -5844,15 +5962,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5861,7 +5979,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:49 GMT + - Wed, 13 Jan 2021 09:53:42 GMT expires: - '-1' pragma: @@ -5876,6 +5994,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -5895,15 +6015,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5912,7 +6032,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:50 GMT + - Wed, 13 Jan 2021 09:53:43 GMT expires: - '-1' pragma: @@ -5927,6 +6047,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -5946,15 +6068,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5963,7 +6085,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:51 GMT + - Wed, 13 Jan 2021 09:53:45 GMT expires: - '-1' pragma: @@ -5978,6 +6100,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -5997,15 +6121,15 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"InProgress","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6014,7 +6138,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:53 GMT + - Wed, 13 Jan 2021 09:53:46 GMT expires: - '-1' pragma: @@ -6029,6 +6153,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -6048,24 +6174,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/0e2ad18c-7d8b-4b1f-b464-0b742c3bf820?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","name":"0e2ad18c-7d8b-4b1f-b464-0b742c3bf820","status":"Succeeded","startTime":"2021-01-13T09:52:33.9434782Z","endTime":"2021-01-13T09:52:33.9434782Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a0625178-9474-4cf3-9bad-b803b63b02d6"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:54 GMT + - Wed, 13 Jan 2021 09:53:47 GMT expires: - '-1' pragma: @@ -6080,6 +6206,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -6099,80 +6227,31 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a0625178-9474-4cf3-9bad-b803b63b02d6?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/a0625178-9474-4cf3-9bad-b803b63b02d6","name":"a0625178-9474-4cf3-9bad-b803b63b02d6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.7004966S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-13T09:52:33.9484878Z","endTime":"2021-01-13T09:53:47.6489844Z","activityId":"0c44bf68-5585-11eb-9299-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '188' + - '760' content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:55 GMT + - Wed, 13 Jan 2021 09:53: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 - response: - body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Wed, 09 Oct 2019 12:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -6182,6 +6261,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6195,30 +6276,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"Succeeded","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"2019-10-09T12:42:43.4888356Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1730eceb-7e13-4152-944f-61d8aebb1def"}}' + 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","lastBackupTime":"2021-01-13T09:47:27.4262709Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '304' + - '1624' content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:58 GMT + - Wed, 13 Jan 2021 09:53:51 GMT expires: - '-1' pragma: @@ -6233,6 +6317,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6246,38 +6332,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/1730eceb-7e13-4152-944f-61d8aebb1def?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/1730eceb-7e13-4152-944f-61d8aebb1def","name":"1730eceb-7e13-4152-944f-61d8aebb1def","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M14.595109S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"2019-10-09T12:43:58.0839446Z","activityId":"4871cb38-ea92-11e9-945e-186024943d4f"}}' + 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","lastBackupTime":"2021-01-13T09:47:27.4262709Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"1605632849","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"}}' headers: cache-control: - no-cache content-length: - - '742' + - '1624' content-type: - application/json date: - - Wed, 09 Oct 2019 12:43:58 GMT + - Wed, 13 Jan 2021 09:53: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: @@ -6286,6 +6373,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6299,52 +6388,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + 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/protectedItems/SAPHanaDatabase%3Bhxe%3Bsystemdb?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-09T12:39:53.4617442Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1622' - content-type: - - application/json + - '0' date: - - Wed, 09 Oct 2019 12:43:59 GMT + - Wed, 13 Jan 2021 09:53:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6359,27 +6445,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-09T12:39:53.4617442Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1622' + - '188' content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:01 GMT + - Wed, 13 Jan 2021 09:53:55 GMT expires: - '-1' pragma: @@ -6394,62 +6477,13 @@ interactions: - 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 protection disable - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 09 Oct 2019 12:44:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperationResults/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-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: @@ -6464,15 +6498,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6481,7 +6515,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:02 GMT + - Wed, 13 Jan 2021 09:53:57 GMT expires: - '-1' pragma: @@ -6496,6 +6530,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -6515,15 +6551,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6532,7 +6568,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:03 GMT + - Wed, 13 Jan 2021 09:53:58 GMT expires: - '-1' pragma: @@ -6547,6 +6583,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -6566,15 +6604,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6583,7 +6621,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:04 GMT + - Wed, 13 Jan 2021 09:54:00 GMT expires: - '-1' pragma: @@ -6598,6 +6636,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -6617,15 +6657,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6634,7 +6674,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:06 GMT + - Wed, 13 Jan 2021 09:54:02 GMT expires: - '-1' pragma: @@ -6649,6 +6689,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -6668,15 +6710,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6685,7 +6727,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:07 GMT + - Wed, 13 Jan 2021 09:54:03 GMT expires: - '-1' pragma: @@ -6700,6 +6742,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -6719,15 +6763,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6736,7 +6780,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:09 GMT + - Wed, 13 Jan 2021 09:54:05 GMT expires: - '-1' pragma: @@ -6751,6 +6795,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -6770,15 +6816,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6787,7 +6833,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:10 GMT + - Wed, 13 Jan 2021 09:54:06 GMT expires: - '-1' pragma: @@ -6802,6 +6848,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -6821,15 +6869,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6838,7 +6886,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:11 GMT + - Wed, 13 Jan 2021 09:54:08 GMT expires: - '-1' pragma: @@ -6853,6 +6901,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -6872,15 +6922,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6889,7 +6939,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:12 GMT + - Wed, 13 Jan 2021 09:54:09 GMT expires: - '-1' pragma: @@ -6904,6 +6954,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -6923,15 +6975,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6940,7 +6992,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:14 GMT + - Wed, 13 Jan 2021 09:54:10 GMT expires: - '-1' pragma: @@ -6955,6 +7007,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' x-powered-by: - ASP.NET status: @@ -6974,15 +7028,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6991,7 +7045,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:15 GMT + - Wed, 13 Jan 2021 09:54:12 GMT expires: - '-1' pragma: @@ -7006,6 +7060,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -7025,15 +7081,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7042,7 +7098,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:16 GMT + - Wed, 13 Jan 2021 09:54:13 GMT expires: - '-1' pragma: @@ -7057,6 +7113,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -7076,15 +7134,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7093,7 +7151,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:18 GMT + - Wed, 13 Jan 2021 09:54:14 GMT expires: - '-1' pragma: @@ -7108,6 +7166,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -7127,15 +7187,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7144,7 +7204,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:19 GMT + - Wed, 13 Jan 2021 09:54:17 GMT expires: - '-1' pragma: @@ -7159,6 +7219,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -7178,15 +7240,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7195,7 +7257,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:24 GMT + - Wed, 13 Jan 2021 09:54:18 GMT expires: - '-1' pragma: @@ -7210,6 +7272,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -7229,15 +7293,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7246,7 +7310,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:25 GMT + - Wed, 13 Jan 2021 09:54:20 GMT expires: - '-1' pragma: @@ -7261,6 +7325,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -7280,15 +7346,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7297,7 +7363,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:26 GMT + - Wed, 13 Jan 2021 09:54:21 GMT expires: - '-1' pragma: @@ -7312,6 +7378,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -7331,15 +7399,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7348,7 +7416,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:28 GMT + - Wed, 13 Jan 2021 09:54:22 GMT expires: - '-1' pragma: @@ -7363,6 +7431,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' x-powered-by: - ASP.NET status: @@ -7382,15 +7452,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7399,7 +7469,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:28 GMT + - Wed, 13 Jan 2021 09:54:24 GMT expires: - '-1' pragma: @@ -7414,6 +7484,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -7433,15 +7505,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7450,7 +7522,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:30 GMT + - Wed, 13 Jan 2021 09:54:25 GMT expires: - '-1' pragma: @@ -7465,6 +7537,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' x-powered-by: - ASP.NET status: @@ -7484,15 +7558,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7501,7 +7575,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:32 GMT + - Wed, 13 Jan 2021 09:54:26 GMT expires: - '-1' pragma: @@ -7516,6 +7590,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -7535,15 +7611,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"InProgress","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7552,7 +7628,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:33 GMT + - Wed, 13 Jan 2021 09:54:29 GMT expires: - '-1' pragma: @@ -7567,6 +7643,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -7586,15 +7664,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/8174d626-f416-4fee-aa17-3d106606eb80?api-version=2020-10-01 response: body: - string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"Succeeded","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"2019-10-09T12:44:02.0548118Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"83d936e4-91b1-4f2d-bd4c-c97eae39767d"}}' + string: '{"id":"8174d626-f416-4fee-aa17-3d106606eb80","name":"8174d626-f416-4fee-aa17-3d106606eb80","status":"Succeeded","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"2021-01-13T09:53:55.7040758Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2a94a75f-2a4d-48b8-ab27-2bdb943b1110"}}' headers: cache-control: - no-cache @@ -7603,7 +7681,7 @@ interactions: content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:34 GMT + - Wed, 13 Jan 2021 09:54:30 GMT expires: - '-1' pragma: @@ -7618,6 +7696,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -7637,24 +7717,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/83d936e4-91b1-4f2d-bd4c-c97eae39767d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/2a94a75f-2a4d-48b8-ab27-2bdb943b1110?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/83d936e4-91b1-4f2d-bd4c-c97eae39767d","name":"83d936e4-91b1-4f2d-bd4c-c97eae39767d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.2027474S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"2019-10-09T12:44:34.2575592Z","activityId":"778a5d98-ea92-11e9-bbf7-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/2a94a75f-2a4d-48b8-ab27-2bdb943b1110","name":"2a94a75f-2a4d-48b8-ab27-2bdb943b1110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.3348264S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-13T09:53:55.7040758Z","endTime":"2021-01-13T09:54:29.0389022Z","activityId":"3dbc87af-5585-11eb-9b16-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '711' + - '728' content-type: - application/json date: - - Wed, 09 Oct 2019 12:44:34 GMT + - Wed, 13 Jan 2021 09:54:32 GMT expires: - '-1' pragma: @@ -7670,6 +7750,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml index cbc088c89fb..e4f97a59fa9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -n -b + - -g -v -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1712' + - '1992' content-type: - application/json date: - - Fri, 05 Jul 2019 11:35:59 GMT + - Wed, 13 Jan 2021 09:19:07 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -55,20 +57,23 @@ interactions: "workLoadType": "SAPHanaDatabase", "settings": {"timeZone": "UTC", "issqlcompression": false, "isCompression": false}, "subProtectionPolicy": [{"policyType": "Full", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": - "Daily", "scheduleRunTimes": ["2019-05-13T22:30:00.000Z"], "scheduleWeeklyFrequency": - 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": - {"retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": {"count": - 180, "durationType": "Days"}}, "weeklySchedule": {"daysOfTheWeek": ["Sunday"], - "retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": {"count": - 104, "durationType": "Weeks"}}, "monthlySchedule": {"retentionScheduleFormatType": - "Weekly", "retentionScheduleWeekly": {"daysOfTheWeek": ["Sunday"], "weeksOfTheMonth": - ["First"]}, "retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": - {"count": 60, "durationType": "Months"}}, "yearlySchedule": {"retentionScheduleFormatType": - "Weekly", "monthsOfYear": ["January"], "retentionScheduleWeekly": {"daysOfTheWeek": - ["Sunday"], "weeksOfTheMonth": ["First"]}, "retentionTimes": ["2019-05-13T22:30:00.000Z"], - "retentionDuration": {"count": 10, "durationType": "Years"}}}}, {"policyType": - "Log", "schedulePolicy": {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": - 120}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": + "Weekly", "scheduleRunDays": ["Tuesday"], "scheduleRunTimes": ["2020-11-08T03:00:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "weeklySchedule": {"daysOfTheWeek": ["Tuesday"], "retentionTimes": ["2020-11-08T03:00:00.000Z"], + "retentionDuration": {"count": 104, "durationType": "Weeks"}}, "monthlySchedule": + {"retentionScheduleFormatType": "Weekly", "retentionScheduleWeekly": {"daysOfTheWeek": + ["Tuesday"], "weeksOfTheMonth": ["First"]}, "retentionTimes": ["2020-11-08T03:00:00.000Z"], + "retentionDuration": {"count": 60, "durationType": "Months"}}, "yearlySchedule": + {"retentionScheduleFormatType": "Weekly", "monthsOfYear": ["January"], "retentionScheduleWeekly": + {"daysOfTheWeek": ["Tuesday"], "weeksOfTheMonth": ["First"]}, "retentionTimes": + ["2020-11-08T03:00:00.000Z"], "retentionDuration": {"count": 10, "durationType": + "Years"}}}}, {"policyType": "Differential", "schedulePolicy": {"schedulePolicyType": + "SimpleSchedulePolicy", "scheduleRunFrequency": "Weekly", "scheduleRunDays": + ["Monday"], "scheduleRunTimes": ["2020-11-30T12:00:00.000Z"], "scheduleWeeklyFrequency": + 0}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": + {"count": 30, "durationType": "Days"}}}, {"policyType": "Log", "schedulePolicy": + {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": 120}, + "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": {"count": 15, "durationType": "Days"}}}]}}' headers: Accept: @@ -76,34 +81,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup policy new + - backup policy create Connection: - keep-alive Content-Length: - - '1582' + - '1862' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v --policy -b -w -n + - -g -v --policy --backup-management-type --workload-type --name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1740' + - '2010' content-type: - application/json date: - - Fri, 05 Jul 2019 11:36:01 GMT + - Wed, 13 Jan 2021 09:19:10 GMT expires: - '-1' pragma: @@ -119,7 +124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -139,24 +144,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackp","name":"HourlyLogBackp","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/log15min","name":"log15min","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-06-14T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":15},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-11-07T03:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-07T03:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-11-07T03:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-07T03:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-test","name":"hana-policy-test","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-09T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Monday"],"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Monday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Monday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Incremental","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Thursday"],"scheduleRunTimes":["2020-11-09T10:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '8682' + - '7797' content-type: - application/json date: - - Fri, 05 Jul 2019 11:36:01 GMT + - Wed, 13 Jan 2021 09:19:12 GMT expires: - '-1' pragma: @@ -171,6 +176,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -188,26 +195,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -n -b + - -g -v -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1740' + - '2010' content-type: - application/json date: - - Fri, 05 Jul 2019 11:36:01 GMT + - Wed, 13 Jan 2021 09:19:14 GMT expires: - '-1' pragma: @@ -222,6 +229,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -243,12 +252,12 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '' @@ -258,7 +267,7 @@ interactions: content-length: - '0' date: - - Fri, 05 Jul 2019 11:36:03 GMT + - Wed, 13 Jan 2021 09:19:18 GMT expires: - '-1' pragma: @@ -268,7 +277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -288,24 +297,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackp","name":"HourlyLogBackp","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/log15min","name":"log15min","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-06-14T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":15},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-11-07T03:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-07T03:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-11-07T03:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-11-07T03:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-test","name":"hana-policy-test","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-09T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Monday"],"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Monday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Monday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-09T12:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Incremental","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Thursday"],"scheduleRunTimes":["2020-11-09T10:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '6941' + - '5786' content-type: - application/json date: - - Fri, 05 Jul 2019 11:36:04 GMT + - Wed, 13 Jan 2021 09:19:19 GMT expires: - '-1' pragma: @@ -320,6 +329,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml index cf65d33a955..dcc97c38f87 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;hanajb","name":"VMAppContainer;Compute;IDCDemo;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","name":"VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nopCommerceWeb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nopCommerceRG/providers/Microsoft.Compute/virtualMachines/nopCommerceWeb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ReadyDemoGroups;hanajb","name":"VMAppContainer;Compute;ReadyDemoGroups;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReadyDemoGroups/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;SAPHANABugBash;hanajb","name":"VMAppContainer;Compute;SAPHANABugBash;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SAPHANABugBash/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","name":"VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"trinadhARMpoltest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhkpolicytest/providers/Microsoft.Compute/virtualMachines/trinadhARMpoltest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsDmzVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsDmzVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgSqlVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgSqlVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNoFw1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNoFw1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgTestVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgTestVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmManaged2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmManaged2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmUnm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmUnm1"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy","name":"VMAppContainer;Compute;akneema;akneema-hana-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-sql-ccy","name":"VMAppContainer;Compute;akneema;akneema-sql-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-sql-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-sql-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-vm-ccy","name":"VMAppContainer;Compute;akneema;akneema-vm-ccy","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-vm-ccy","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-vm-ccy"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;hiagaSrcRG2;PSTestVM545483","name":"VMAppContainer;Compute;hiagaSrcRG2;PSTestVM545483","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"PSTestVM545483","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSrcRG2/providers/Microsoft.Compute/virtualMachines/PSTestVM545483"}}]}' headers: cache-control: - no-cache content-length: - - '9277' + - '2727' content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:16 GMT + - Sat, 16 Jan 2021 17:14:04 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -52,7 +54,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": - "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy", "workloadType": "SAPHanaDatabase"}}' headers: Accept: @@ -64,22 +66,24 @@ interactions: Connection: - keep-alive Content-Length: - - '282' + - '286' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -87,11 +91,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:16 GMT + - Sat, 16 Jan 2021 17:14:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -101,7 +105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -119,18 +123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -138,11 +144,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:17 GMT + - Sat, 16 Jan 2021 17:14:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -151,6 +157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -168,18 +176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -187,11 +197,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:19 GMT + - Sat, 16 Jan 2021 17:14:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -200,6 +210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -217,18 +229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -236,11 +250,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:21 GMT + - Sat, 16 Jan 2021 17:14:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -249,6 +263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -266,18 +282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -285,11 +303,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:21 GMT + - Sat, 16 Jan 2021 17:14:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -298,6 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -315,18 +335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -334,11 +356,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:24 GMT + - Sat, 16 Jan 2021 17:14:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -347,6 +369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -364,18 +388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -383,11 +409,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:25 GMT + - Sat, 16 Jan 2021 17:14:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -396,6 +422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -413,18 +441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -432,11 +462,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:26 GMT + - Sat, 16 Jan 2021 17:14:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -445,6 +475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -462,18 +494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -481,11 +515,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:28 GMT + - Sat, 16 Jan 2021 17:14:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -494,6 +528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -511,18 +547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -530,11 +568,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:29 GMT + - Sat, 16 Jan 2021 17:14:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -543,6 +581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -560,18 +600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -579,11 +621,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:31 GMT + - Sat, 16 Jan 2021 17:14:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -592,6 +634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -609,18 +653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -628,11 +674,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:32 GMT + - Sat, 16 Jan 2021 17:14:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -641,6 +687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -658,18 +706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -677,11 +727,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:35 GMT + - Sat, 16 Jan 2021 17:14:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -690,6 +740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -707,18 +759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -726,11 +780,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:35 GMT + - Sat, 16 Jan 2021 17:14:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -739,6 +793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -756,18 +812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -775,11 +833,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:37 GMT + - Sat, 16 Jan 2021 17:14:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -788,6 +846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -805,18 +865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -824,11 +886,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:38 GMT + - Sat, 16 Jan 2021 17:14:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -837,6 +899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -854,18 +918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -873,11 +939,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:41 GMT + - Sat, 16 Jan 2021 17:14:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -886,6 +952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -903,18 +971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -922,11 +992,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:41 GMT + - Sat, 16 Jan 2021 17:14:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -935,6 +1005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -952,18 +1024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1045,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:43 GMT + - Sat, 16 Jan 2021 17:14:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -984,6 +1058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1001,18 +1077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1020,11 +1098,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:45 GMT + - Sat, 16 Jan 2021 17:14:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1033,6 +1111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1050,18 +1130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1069,11 +1151,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:47 GMT + - Sat, 16 Jan 2021 17:14:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1082,6 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1099,18 +1183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1118,11 +1204,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:48 GMT + - Sat, 16 Jan 2021 17:14:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1131,6 +1217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1148,18 +1236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1167,11 +1257,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:49 GMT + - Sat, 16 Jan 2021 17:14:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1180,6 +1270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1197,18 +1289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1216,11 +1310,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:51 GMT + - Sat, 16 Jan 2021 17:14:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1229,6 +1323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1246,18 +1342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1265,11 +1363,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:53 GMT + - Sat, 16 Jan 2021 17:14:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1278,6 +1376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1295,18 +1395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1314,11 +1416,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:54 GMT + - Sat, 16 Jan 2021 17:14:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1327,6 +1429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1344,18 +1448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1363,11 +1469,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:56 GMT + - Sat, 16 Jan 2021 17:14:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1376,6 +1482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1393,18 +1501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1412,11 +1522,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:57 GMT + - Sat, 16 Jan 2021 17:14:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1425,6 +1535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1442,18 +1554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1461,11 +1575,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:38:59 GMT + - Sat, 16 Jan 2021 17:14:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1474,6 +1588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1491,18 +1607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1510,11 +1628,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:00 GMT + - Sat, 16 Jan 2021 17:14:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1523,6 +1641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1540,18 +1660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1559,11 +1681,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:02 GMT + - Sat, 16 Jan 2021 17:14:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1572,6 +1694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1589,18 +1713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1608,11 +1734,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:04 GMT + - Sat, 16 Jan 2021 17:14:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1621,6 +1747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1638,18 +1766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1657,11 +1787,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:05 GMT + - Sat, 16 Jan 2021 17:14:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1670,6 +1800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1687,18 +1819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1706,11 +1840,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:07 GMT + - Sat, 16 Jan 2021 17:14:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1719,6 +1853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1736,18 +1872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1755,11 +1893,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:08 GMT + - Sat, 16 Jan 2021 17:14:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1768,6 +1906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1785,18 +1925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1804,11 +1946,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:10 GMT + - Sat, 16 Jan 2021 17:14:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1817,6 +1959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1834,18 +1978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1853,11 +1999,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:11 GMT + - Sat, 16 Jan 2021 17:15:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1866,6 +2012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1883,18 +2031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1902,11 +2052,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:13 GMT + - Sat, 16 Jan 2021 17:15:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1915,6 +2065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1932,18 +2084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1951,11 +2105,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:14 GMT + - Sat, 16 Jan 2021 17:15:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -1964,6 +2118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -1981,18 +2137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2000,11 +2158,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:16 GMT + - Sat, 16 Jan 2021 17:15:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2013,6 +2171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2030,18 +2190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2049,11 +2211,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:17 GMT + - Sat, 16 Jan 2021 17:15:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2062,6 +2224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2079,18 +2243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2098,11 +2264,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:19 GMT + - Sat, 16 Jan 2021 17:15:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2111,6 +2277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2128,18 +2296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2147,11 +2317,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:20 GMT + - Sat, 16 Jan 2021 17:15:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2160,6 +2330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2177,18 +2349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2196,11 +2370,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:21 GMT + - Sat, 16 Jan 2021 17:15:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2209,6 +2383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2226,18 +2402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2245,11 +2423,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:23 GMT + - Sat, 16 Jan 2021 17:15:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2258,6 +2436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2275,18 +2455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2294,11 +2476,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:24 GMT + - Sat, 16 Jan 2021 17:15:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2307,6 +2489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2324,18 +2508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2343,11 +2529,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:26 GMT + - Sat, 16 Jan 2021 17:15:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2356,6 +2542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2373,18 +2561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2392,11 +2582,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:28 GMT + - Sat, 16 Jan 2021 17:15:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2405,6 +2595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2422,18 +2614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2441,11 +2635,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:29 GMT + - Sat, 16 Jan 2021 17:15:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2454,6 +2648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2471,18 +2667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2490,11 +2688,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:31 GMT + - Sat, 16 Jan 2021 17:15:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2503,6 +2701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2520,18 +2720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2539,11 +2741,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:32 GMT + - Sat, 16 Jan 2021 17:15:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2552,6 +2754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2569,18 +2773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2588,11 +2794,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:33 GMT + - Sat, 16 Jan 2021 17:15:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2601,6 +2807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2618,18 +2826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2637,11 +2847,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:35 GMT + - Sat, 16 Jan 2021 17:15:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2650,6 +2860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2667,18 +2879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2686,11 +2900,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:37 GMT + - Sat, 16 Jan 2021 17:15:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2699,6 +2913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2716,18 +2932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2735,11 +2953,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:38 GMT + - Sat, 16 Jan 2021 17:15:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -2748,6 +2966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2765,45 +2985,47 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1112' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:39 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '95' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2812,49 +3034,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '3350' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:41 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '94' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2863,49 +3087,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container register Connection: - keep-alive ParameterSetName: - - -n -v -g --query -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1112' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:43 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '93' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2914,49 +3140,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item list + - backup container register Connection: - keep-alive ParameterSetName: - - -g -v -w + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '6665' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:39:45 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2965,42 +3193,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item initialize + - backup container register Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -w -c + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/inquire?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 08 Jul 2019 10:42:18 GMT + - Sat, 16 Jan 2021 17:15:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/8ee0bd5a-ec46-4fbc-a151-323f58ce4e03?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3014,49 +3246,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item list + - backup container register Connection: - keep-alive ParameterSetName: - - -g -v -w + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":3,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;newdb","name":"saphanadatabase;h22;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"NEWDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '7410' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:42:59 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '90' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3065,49 +3299,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup container register Connection: - keep-alive ParameterSetName: - - -g -v -n -w -p -s + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bakneema%3Bakneema-hana-ccy/operationResults/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":3,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;newdb","name":"saphanadatabase;h22;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"NEWDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '7410' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:05 GMT + - Sat, 16 Jan 2021 17:15: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '89' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3116,42 +3352,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/protectionContainers/VMAppContainer;Compute;akneema;akneema-hana-ccy/operationsStatus/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 08 Jul 2019 10:43:09 GMT + - Sat, 16 Jan 2021 17:15:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '88' x-powered-by: - ASP.NET status: @@ -3165,22 +3405,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3188,11 +3430,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:09 GMT + - Sat, 16 Jan 2021 17:15:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3201,6 +3443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -3214,22 +3458,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3237,11 +3483,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:11 GMT + - Sat, 16 Jan 2021 17:15:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3250,6 +3496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -3263,22 +3511,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3286,11 +3536,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:13 GMT + - Sat, 16 Jan 2021 17:15:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3299,6 +3549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -3312,22 +3564,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3335,11 +3589,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:15 GMT + - Sat, 16 Jan 2021 17:15:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3348,6 +3602,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -3361,22 +3617,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3384,11 +3642,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:17 GMT + - Sat, 16 Jan 2021 17:15:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3397,6 +3655,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -3410,22 +3670,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3433,11 +3695,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:18 GMT + - Sat, 16 Jan 2021 17:15:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3446,6 +3708,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -3459,22 +3723,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3482,11 +3748,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:20 GMT + - Sat, 16 Jan 2021 17:15:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3495,6 +3761,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -3508,22 +3776,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3531,11 +3801,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:22 GMT + - Sat, 16 Jan 2021 17:15:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3544,6 +3814,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -3557,22 +3829,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3580,11 +3854,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:24 GMT + - Sat, 16 Jan 2021 17:15:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3593,6 +3867,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -3606,22 +3882,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3629,11 +3907,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:25 GMT + - Sat, 16 Jan 2021 17:15:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3642,6 +3920,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -3655,22 +3935,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3678,11 +3960,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:27 GMT + - Sat, 16 Jan 2021 17:15:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3691,6 +3973,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -3704,22 +3988,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3727,11 +4013,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:29 GMT + - Sat, 16 Jan 2021 17:15:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3740,6 +4026,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -3753,22 +4041,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3776,11 +4066,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:30 GMT + - Sat, 16 Jan 2021 17:16:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3789,6 +4079,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -3802,22 +4094,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3825,11 +4119,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:32 GMT + - Sat, 16 Jan 2021 17:16:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3838,6 +4132,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -3851,22 +4147,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3874,11 +4172,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:33 GMT + - Sat, 16 Jan 2021 17:16:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3887,6 +4185,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -3900,22 +4200,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3923,11 +4225,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:36 GMT + - Sat, 16 Jan 2021 17:16:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3936,6 +4238,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -3949,22 +4253,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3972,11 +4278,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:37 GMT + - Sat, 16 Jan 2021 17:16:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -3985,6 +4291,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -3998,22 +4306,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4021,11 +4331,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:39 GMT + - Sat, 16 Jan 2021 17:16:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4034,6 +4344,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -4047,22 +4359,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4070,11 +4384,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:41 GMT + - Sat, 16 Jan 2021 17:16:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4083,6 +4397,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -4096,22 +4412,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4119,11 +4437,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:42 GMT + - Sat, 16 Jan 2021 17:16:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4132,6 +4450,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -4145,22 +4465,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4168,11 +4490,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:44 GMT + - Sat, 16 Jan 2021 17:16:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4181,6 +4503,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -4194,22 +4518,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4217,11 +4543,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:46 GMT + - Sat, 16 Jan 2021 17:16:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4230,6 +4556,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -4243,22 +4571,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4266,11 +4596,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:47 GMT + - Sat, 16 Jan 2021 17:16:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4279,6 +4609,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -4292,22 +4624,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4315,11 +4649,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:49 GMT + - Sat, 16 Jan 2021 17:16:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4328,6 +4662,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -4341,22 +4677,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4364,11 +4702,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:51 GMT + - Sat, 16 Jan 2021 17:16:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4377,6 +4715,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -4390,22 +4730,130 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '62' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '61' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4413,11 +4861,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 10:43:53 GMT + - Sat, 16 Jan 2021 17:16:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-01 pragma: - no-cache server: @@ -4426,6 +4874,2497 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '59' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '58' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '57' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '56' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '55' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '54' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '53' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '52' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '51' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '50' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '49' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '48' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '47' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '46' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '45' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '44' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '43' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '42' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '41' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '40' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '39' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '38' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '37' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:16: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '36' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '35' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '34' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '33' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '32' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '31' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '30' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '29' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '28' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '27' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '26' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '25' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '24' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '23' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '22' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '21' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '20' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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: + - '19' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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/346b68c6-da3b-4fae-bd5f-e5fa88574afd?api-version=2020-10-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-01-16T17:15:13.2166967Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1050' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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: + - '18' + 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: + - -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:15:13.2166967Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1140' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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: + - '143' + 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 --query --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - 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=2020-10-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-01-16T17:15:13.2166967Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1128' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;systemdb","name":"saphanadatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2302' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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 protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --name --workload-type --protectable-item-type --server-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;systemdb","name":"saphanadatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2302' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:17: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: + - '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 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.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=2020-10-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/c74d7c22-a99b-46e0-a453-eb1764be9895?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 17:17:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperationResults/c74d7c22-a99b-46e0-a453-eb1764be9895?fabricName=Azure?api-version=2020-10-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: @@ -4443,14 +7382,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-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/c74d7c22-a99b-46e0-a453-eb1764be9895?api-version=2020-10-01 response: body: string: '' @@ -4460,7 +7399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 10:43:54 GMT + - Sat, 16 Jan 2021 17:23:02 GMT expires: - '-1' pragma: @@ -4469,6 +7408,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4486,26 +7427,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '2237' + - '12' content-type: - application/json date: - - Mon, 08 Jul 2019 10:44:00 GMT + - Sat, 16 Jan 2021 17:23:04 GMT expires: - '-1' pragma: @@ -4520,6 +7461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml index 885511a144b..25f64cefef9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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-01-13T11:21:01.1273867Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3511' + - '1140' content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:39 GMT + - Wed, 13 Jan 2021 11:51:28 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -58,30 +60,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;systemdb","name":"saphanadatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"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/protectableItems/saphanadbinstance;hxe;saphanadbinstance","name":"saphanadbinstance;hxe;saphanadbinstance","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"hxehost","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDBInstance","friendlyName":"HXE","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '6877' + - '3143' content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:40 GMT + - Wed, 13 Jan 2021 11:51:30 GMT expires: - '-1' pragma: @@ -96,6 +98,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -113,26 +117,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1718' + - '1992' content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:41 GMT + - Wed, 13 Jan 2021 11:51:32 GMT expires: - '-1' pragma: @@ -147,6 +151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -154,7 +160,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "SAPHanaDatabase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy", "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' headers: Accept: @@ -166,34 +172,34 @@ interactions: Connection: - keep-alive Content-Length: - - '325' + - '330' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-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/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:53:41 GMT + - Wed, 13 Jan 2021 11:51:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-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/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -219,119 +225,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 - response: - body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:53: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-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 - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 - response: - body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:53: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-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 + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -340,7 +244,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:44 GMT + - Wed, 13 Jan 2021 11:51:35 GMT expires: - '-1' pragma: @@ -355,6 +259,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -372,17 +278,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -391,7 +297,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:46 GMT + - Wed, 13 Jan 2021 11:51:36 GMT expires: - '-1' pragma: @@ -406,6 +312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -423,17 +331,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -442,7 +350,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:47 GMT + - Wed, 13 Jan 2021 11:51:38 GMT expires: - '-1' pragma: @@ -457,6 +365,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -474,17 +384,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -493,7 +403,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:48 GMT + - Wed, 13 Jan 2021 11:51:39 GMT expires: - '-1' pragma: @@ -508,6 +418,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -525,17 +437,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -544,7 +456,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:50 GMT + - Wed, 13 Jan 2021 11:51:41 GMT expires: - '-1' pragma: @@ -559,6 +471,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -576,17 +490,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -595,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:52 GMT + - Wed, 13 Jan 2021 11:51:42 GMT expires: - '-1' pragma: @@ -610,6 +524,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -627,17 +543,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -646,7 +562,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:53 GMT + - Wed, 13 Jan 2021 11:51:44 GMT expires: - '-1' pragma: @@ -661,6 +577,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -678,17 +596,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -697,7 +615,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:55 GMT + - Wed, 13 Jan 2021 11:51:45 GMT expires: - '-1' pragma: @@ -712,6 +630,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -729,17 +649,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -748,7 +668,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:55 GMT + - Wed, 13 Jan 2021 11:51:46 GMT expires: - '-1' pragma: @@ -763,6 +683,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -780,17 +702,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -799,7 +721,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:57 GMT + - Wed, 13 Jan 2021 11:51:48 GMT expires: - '-1' pragma: @@ -814,6 +736,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -831,17 +755,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -850,7 +774,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:59 GMT + - Wed, 13 Jan 2021 11:51:50 GMT expires: - '-1' pragma: @@ -865,6 +789,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -882,17 +808,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -901,7 +827,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:53:59 GMT + - Wed, 13 Jan 2021 11:51:51 GMT expires: - '-1' pragma: @@ -916,6 +842,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -933,17 +861,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -952,7 +880,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:01 GMT + - Wed, 13 Jan 2021 11:51:53 GMT expires: - '-1' pragma: @@ -967,6 +895,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -984,17 +914,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1003,7 +933,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:02 GMT + - Wed, 13 Jan 2021 11:51:54 GMT expires: - '-1' pragma: @@ -1018,6 +948,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -1035,17 +967,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1054,7 +986,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:04 GMT + - Wed, 13 Jan 2021 11:51:55 GMT expires: - '-1' pragma: @@ -1069,6 +1001,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -1086,17 +1020,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1105,7 +1039,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:05 GMT + - Wed, 13 Jan 2021 11:51:57 GMT expires: - '-1' pragma: @@ -1120,6 +1054,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -1137,17 +1073,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1156,7 +1092,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:07 GMT + - Wed, 13 Jan 2021 11:51:58 GMT expires: - '-1' pragma: @@ -1171,6 +1107,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -1188,17 +1126,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1207,7 +1145,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:07 GMT + - Wed, 13 Jan 2021 11:51:59 GMT expires: - '-1' pragma: @@ -1222,6 +1160,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -1239,17 +1179,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1258,7 +1198,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:09 GMT + - Wed, 13 Jan 2021 11:52:01 GMT expires: - '-1' pragma: @@ -1273,6 +1213,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -1290,17 +1232,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1309,7 +1251,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:10 GMT + - Wed, 13 Jan 2021 11:52:03 GMT expires: - '-1' pragma: @@ -1324,6 +1266,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -1341,17 +1285,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1360,7 +1304,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:11 GMT + - Wed, 13 Jan 2021 11:52:04 GMT expires: - '-1' pragma: @@ -1375,6 +1319,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -1392,17 +1338,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1411,7 +1357,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:13 GMT + - Wed, 13 Jan 2021 11:52:06 GMT expires: - '-1' pragma: @@ -1426,6 +1372,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -1443,17 +1391,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1462,7 +1410,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:14 GMT + - Wed, 13 Jan 2021 11:52:07 GMT expires: - '-1' pragma: @@ -1477,6 +1425,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -1494,17 +1444,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1513,7 +1463,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:16 GMT + - Wed, 13 Jan 2021 11:52:08 GMT expires: - '-1' pragma: @@ -1528,6 +1478,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -1545,17 +1497,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1564,7 +1516,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:17 GMT + - Wed, 13 Jan 2021 11:52:10 GMT expires: - '-1' pragma: @@ -1579,6 +1531,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -1596,17 +1550,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1615,7 +1569,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:18 GMT + - Wed, 13 Jan 2021 11:52:11 GMT expires: - '-1' pragma: @@ -1630,6 +1584,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -1647,17 +1603,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1666,7 +1622,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:20 GMT + - Wed, 13 Jan 2021 11:52:13 GMT expires: - '-1' pragma: @@ -1681,6 +1637,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -1698,17 +1656,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1717,7 +1675,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:21 GMT + - Wed, 13 Jan 2021 11:52:15 GMT expires: - '-1' pragma: @@ -1732,6 +1690,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -1749,17 +1709,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1768,7 +1728,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:23 GMT + - Wed, 13 Jan 2021 11:52:16 GMT expires: - '-1' pragma: @@ -1783,6 +1743,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -1800,17 +1762,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1819,7 +1781,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:24 GMT + - Wed, 13 Jan 2021 11:52:17 GMT expires: - '-1' pragma: @@ -1834,6 +1796,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -1851,17 +1815,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1870,7 +1834,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:26 GMT + - Wed, 13 Jan 2021 11:52:18 GMT expires: - '-1' pragma: @@ -1885,6 +1849,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -1902,17 +1868,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1921,7 +1887,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:30 GMT + - Wed, 13 Jan 2021 11:52:21 GMT expires: - '-1' pragma: @@ -1936,6 +1902,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -1953,17 +1921,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +1940,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:31 GMT + - Wed, 13 Jan 2021 11:52:22 GMT expires: - '-1' pragma: @@ -1987,6 +1955,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -2004,17 +1974,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2023,7 +1993,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:32 GMT + - Wed, 13 Jan 2021 11:52:23 GMT expires: - '-1' pragma: @@ -2038,6 +2008,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -2055,17 +2027,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2074,7 +2046,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:34 GMT + - Wed, 13 Jan 2021 11:52:25 GMT expires: - '-1' pragma: @@ -2089,6 +2061,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -2106,17 +2080,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2125,7 +2099,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:35 GMT + - Wed, 13 Jan 2021 11:52:26 GMT expires: - '-1' pragma: @@ -2140,6 +2114,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -2157,17 +2133,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2176,7 +2152,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:36 GMT + - Wed, 13 Jan 2021 11:52:28 GMT expires: - '-1' pragma: @@ -2191,6 +2167,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -2208,17 +2186,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2227,7 +2205,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:38 GMT + - Wed, 13 Jan 2021 11:52:29 GMT expires: - '-1' pragma: @@ -2242,6 +2220,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -2259,17 +2239,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2278,7 +2258,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:39 GMT + - Wed, 13 Jan 2021 11:52:30 GMT expires: - '-1' pragma: @@ -2293,6 +2273,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -2310,17 +2292,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2329,7 +2311,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:40 GMT + - Wed, 13 Jan 2021 11:52:32 GMT expires: - '-1' pragma: @@ -2344,6 +2326,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -2361,17 +2345,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2380,7 +2364,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:42 GMT + - Wed, 13 Jan 2021 11:52:33 GMT expires: - '-1' pragma: @@ -2395,6 +2379,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -2412,17 +2398,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2431,7 +2417,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:43 GMT + - Wed, 13 Jan 2021 11:52:35 GMT expires: - '-1' pragma: @@ -2446,6 +2432,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -2463,17 +2451,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2482,7 +2470,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:44 GMT + - Wed, 13 Jan 2021 11:52:37 GMT expires: - '-1' pragma: @@ -2497,6 +2485,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -2514,17 +2504,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2533,7 +2523,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:46 GMT + - Wed, 13 Jan 2021 11:52:38 GMT expires: - '-1' pragma: @@ -2548,6 +2538,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -2565,17 +2557,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2584,7 +2576,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:48 GMT + - Wed, 13 Jan 2021 11:52:39 GMT expires: - '-1' pragma: @@ -2599,6 +2591,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -2616,17 +2610,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2635,7 +2629,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:49 GMT + - Wed, 13 Jan 2021 11:52:40 GMT expires: - '-1' pragma: @@ -2650,6 +2644,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -2667,17 +2663,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2686,7 +2682,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:51 GMT + - Wed, 13 Jan 2021 11:52:42 GMT expires: - '-1' pragma: @@ -2701,6 +2697,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -2718,17 +2716,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2737,7 +2735,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:52 GMT + - Wed, 13 Jan 2021 11:52:43 GMT expires: - '-1' pragma: @@ -2752,6 +2750,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -2769,17 +2769,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2788,7 +2788,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:53 GMT + - Wed, 13 Jan 2021 11:52:46 GMT expires: - '-1' pragma: @@ -2803,6 +2803,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -2820,17 +2822,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"InProgress","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2839,7 +2841,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:54 GMT + - Wed, 13 Jan 2021 11:52:47 GMT expires: - '-1' pragma: @@ -2854,6 +2856,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -2871,17 +2875,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/081ce733-14c6-4662-986e-d563c6aa319d?api-version=2020-10-01 response: body: - string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"Succeeded","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"2019-10-10T07:53:41.9880264Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98"}}' + string: '{"id":"081ce733-14c6-4662-986e-d563c6aa319d","name":"081ce733-14c6-4662-986e-d563c6aa319d","status":"Succeeded","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"2021-01-13T11:51:34.8743927Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c31a072f-f38f-46c2-b13a-f6386cd6d270"}}' headers: cache-control: - no-cache @@ -2890,7 +2894,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:56 GMT + - Wed, 13 Jan 2021 11:52:48 GMT expires: - '-1' pragma: @@ -2905,6 +2909,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -2922,27 +2928,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c31a072f-f38f-46c2-b13a-f6386cd6d270?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98","name":"c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.8150893S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"2019-10-10T07:54:55.8031157Z","activityId":"12d97bd2-eb33-11e9-9124-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/c31a072f-f38f-46c2-b13a-f6386cd6d270","name":"c31a072f-f38f-46c2-b13a-f6386cd6d270","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.3956425S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-13T11:51:34.8743927Z","endTime":"2021-01-13T11:52:48.2700352Z","activityId":"ac1df4b7-5595-11eb-b26f-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '743' + - '760' content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:56 GMT + - Wed, 13 Jan 2021 11:52:50 GMT expires: - '-1' pragma: @@ -2958,6 +2964,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2977,24 +2985,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","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-01-13T11:21:01.1273867Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1273' + - '1128' content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:56 GMT + - Wed, 13 Jan 2021 11:52:52 GMT expires: - '-1' pragma: @@ -3009,6 +3017,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3026,26 +3036,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"1499167091","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"}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 07:54:58 GMT + - Wed, 13 Jan 2021 11:52:53 GMT expires: - '-1' pragma: @@ -3060,6 +3070,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3067,7 +3079,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-02-12T11:52:53.996129Z"}}' headers: Accept: - application/json @@ -3078,34 +3090,34 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '173' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/backup?api-version=2016-12-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/backup?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-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/f4bd50b3-8dcd-42b5-a810-4bf8d29d97b3?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:54:58 GMT + - Wed, 13 Jan 2021 11:52:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-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/f4bd50b3-8dcd-42b5-a810-4bf8d29d97b3?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3131,17 +3143,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/f4bd50b3-8dcd-42b5-a810-4bf8d29d97b3?api-version=2020-10-01 response: body: - string: '{"id":"2d7db092-258c-4444-ab2b-7754aa07aac5","name":"2d7db092-258c-4444-ab2b-7754aa07aac5","status":"Succeeded","startTime":"2019-10-10T07:54:59.0255936Z","endTime":"2019-10-10T07:54:59.0255936Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ae79f41a-c315-4823-b0f0-da7612aa18b8"}}' + string: '{"id":"f4bd50b3-8dcd-42b5-a810-4bf8d29d97b3","name":"f4bd50b3-8dcd-42b5-a810-4bf8d29d97b3","status":"Succeeded","startTime":"2021-01-13T11:52:55.6081444Z","endTime":"2021-01-13T11:52:55.6081444Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447"}}' headers: cache-control: - no-cache @@ -3150,7 +3162,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:55:00 GMT + - Wed, 13 Jan 2021 11:52:55 GMT expires: - '-1' pragma: @@ -3165,6 +3177,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3182,28 +3196,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1.3304061S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.5490784S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '769' content-type: - application/json date: - - Thu, 10 Oct 2019 07:55:00 GMT + - Wed, 13 Jan 2021 11:52:57 GMT expires: - '-1' pragma: @@ -3219,6 +3233,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3238,26 +3254,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1.7800556S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.3415545S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '769' content-type: - application/json date: - - Thu, 10 Oct 2019 07:55:00 GMT + - Wed, 13 Jan 2021 11:52:59 GMT expires: - '-1' pragma: @@ -3273,6 +3289,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3292,26 +3310,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.0961931S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.8940317S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '769' content-type: - application/json date: - - Thu, 10 Oct 2019 07:55:00 GMT + - Wed, 13 Jan 2021 11:53:00 GMT expires: - '-1' pragma: @@ -3327,6 +3345,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3346,26 +3366,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT38.5657182S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT35.4051803S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '755' + - '770' content-type: - application/json date: - - Thu, 10 Oct 2019 07:55:37 GMT + - Wed, 13 Jan 2021 11:53:30 GMT expires: - '-1' pragma: @@ -3381,6 +3401,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3400,26 +3422,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.9590388S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M5.8827565S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '771' content-type: - application/json date: - - Thu, 10 Oct 2019 07:56:12 GMT + - Wed, 13 Jan 2021 11:54:01 GMT expires: - '-1' pragma: @@ -3435,6 +3457,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -3454,26 +3478,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M50.3099218S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M36.3930013S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:56:48 GMT + - Wed, 13 Jan 2021 11:54:31 GMT expires: - '-1' pragma: @@ -3489,6 +3513,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3508,26 +3534,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M20.7046883S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M6.8864053S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '771' content-type: - application/json date: - - Thu, 10 Oct 2019 07:57:19 GMT + - Wed, 13 Jan 2021 11:55:02 GMT expires: - '-1' pragma: @@ -3543,6 +3569,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3562,26 +3590,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M51.041103S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M37.3635489S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '756' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:57:49 GMT + - Wed, 13 Jan 2021 11:55:32 GMT expires: - '-1' pragma: @@ -3597,6 +3625,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -3616,26 +3646,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M21.8015269S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M7.8321831S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '771' content-type: - application/json date: - - Thu, 10 Oct 2019 07:58:20 GMT + - Wed, 13 Jan 2021 11:56:03 GMT expires: - '-1' pragma: @@ -3651,6 +3681,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -3670,26 +3702,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M52.1072682S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M38.336221S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-13T11:52:55.6081444Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '771' content-type: - application/json date: - - Thu, 10 Oct 2019 07:58:50 GMT + - Wed, 13 Jan 2021 11:56:33 GMT expires: - '-1' pragma: @@ -3705,6 +3737,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -3724,27 +3758,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M4.4553664S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","name":"975a8b5c-a404-4ebe-a2a5-bb7a4a6d9447","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M3.7026512S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1952.3164"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2019-10-10T07:54:59.0255936Z","endTime":"2019-10-10T07:59:03.48096Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + MB)":"1185.5547"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2021-01-13T11:52:55.6081444Z","endTime":"2021-01-13T11:56:59.3107956Z","activityId":"de39aa3c-5595-11eb-9a48-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '838' + - '848' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:20 GMT + - Wed, 13 Jan 2021 11:57:04 GMT expires: - '-1' pragma: @@ -3760,6 +3794,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -3779,24 +3815,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + 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-01-13T11:52:55.6081444Z","protectedItemDataSourceId":"1499167091","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-13T11:49:32.801Z","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-01-13T11:49:32.801Z"}}' headers: cache-control: - no-cache content-length: - - '1458' + - '1610' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:52 GMT + - Wed, 13 Jan 2021 11:57:35 GMT expires: - '-1' pragma: @@ -3811,6 +3847,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3830,24 +3868,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + 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-01-13T11:52:55.6081444Z","protectedItemDataSourceId":"1499167091","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-13T11:49:32.801Z","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-01-13T11:49:32.801Z"}}' headers: cache-control: - no-cache content-length: - - '1458' + - '1610' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:52 GMT + - Wed, 13 Jan 2021 11:57:36 GMT expires: - '-1' pragma: @@ -3862,6 +3900,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3886,28 +3926,28 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-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/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:59:54 GMT + - Wed, 13 Jan 2021 11:57:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-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/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3915,7 +3955,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3935,24 +3975,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:54 GMT + - Wed, 13 Jan 2021 11:57:40 GMT expires: - '-1' pragma: @@ -3967,6 +4007,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3986,24 +4028,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:56 GMT + - Wed, 13 Jan 2021 11:57:41 GMT expires: - '-1' pragma: @@ -4018,6 +4060,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -4037,24 +4081,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:56 GMT + - Wed, 13 Jan 2021 11:57:42 GMT expires: - '-1' pragma: @@ -4069,6 +4113,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -4088,24 +4134,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:58 GMT + - Wed, 13 Jan 2021 11:57:44 GMT expires: - '-1' pragma: @@ -4120,6 +4166,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -4139,24 +4187,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 07:59:59 GMT + - Wed, 13 Jan 2021 11:57:45 GMT expires: - '-1' pragma: @@ -4171,6 +4219,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -4190,24 +4240,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:01 GMT + - Wed, 13 Jan 2021 11:57:47 GMT expires: - '-1' pragma: @@ -4222,6 +4272,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -4241,24 +4293,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:02 GMT + - Wed, 13 Jan 2021 11:57:48 GMT expires: - '-1' pragma: @@ -4273,6 +4325,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4292,24 +4346,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:04 GMT + - Wed, 13 Jan 2021 11:57:49 GMT expires: - '-1' pragma: @@ -4324,6 +4378,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -4343,24 +4399,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:06 GMT + - Wed, 13 Jan 2021 11:57:51 GMT expires: - '-1' pragma: @@ -4375,6 +4431,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -4394,24 +4452,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:07 GMT + - Wed, 13 Jan 2021 11:57:53 GMT expires: - '-1' pragma: @@ -4426,6 +4484,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4445,24 +4505,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:08 GMT + - Wed, 13 Jan 2021 11:57:54 GMT expires: - '-1' pragma: @@ -4477,6 +4537,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4496,24 +4558,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:11 GMT + - Wed, 13 Jan 2021 11:57:56 GMT expires: - '-1' pragma: @@ -4528,6 +4590,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -4547,24 +4611,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:12 GMT + - Wed, 13 Jan 2021 11:57:57 GMT expires: - '-1' pragma: @@ -4579,6 +4643,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -4598,24 +4664,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:13 GMT + - Wed, 13 Jan 2021 11:57:59 GMT expires: - '-1' pragma: @@ -4630,6 +4696,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -4649,24 +4717,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:15 GMT + - Wed, 13 Jan 2021 11:58:00 GMT expires: - '-1' pragma: @@ -4681,6 +4749,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -4700,24 +4770,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:17 GMT + - Wed, 13 Jan 2021 11:58:01 GMT expires: - '-1' pragma: @@ -4732,6 +4802,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -4751,24 +4823,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:18 GMT + - Wed, 13 Jan 2021 11:58:03 GMT expires: - '-1' pragma: @@ -4783,6 +4855,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -4802,24 +4876,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:19 GMT + - Wed, 13 Jan 2021 11:58:05 GMT expires: - '-1' pragma: @@ -4834,6 +4908,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -4853,24 +4929,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:21 GMT + - Wed, 13 Jan 2021 11:58:07 GMT expires: - '-1' pragma: @@ -4885,6 +4961,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -4904,24 +4982,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:22 GMT + - Wed, 13 Jan 2021 11:58:08 GMT expires: - '-1' pragma: @@ -4936,6 +5014,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -4955,24 +5035,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:24 GMT + - Wed, 13 Jan 2021 11:58:09 GMT expires: - '-1' pragma: @@ -4987,6 +5067,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -5006,24 +5088,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:25 GMT + - Wed, 13 Jan 2021 11:58:11 GMT expires: - '-1' pragma: @@ -5038,6 +5120,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -5057,24 +5141,77 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 response: body: - string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"Succeeded","startTime":"2019-10-10T07:59:53.983253Z","endTime":"2019-10-10T07:59:53.983253Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4d600872-8d07-4952-858e-bfd24c148a02"}}' + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"InProgress","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '302' + - '188' + content-type: + - application/json + date: + - Wed, 13 Jan 2021 11:58: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: + - '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 -i -c --backup-management-type -y + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c?api-version=2020-10-01 + response: + body: + string: '{"id":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","name":"1cda7266-8e5b-4e96-9b3b-0a1f9dae8a4c","status":"Succeeded","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"2021-01-13T11:57:38.3567186Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"04a11392-f068-4c6e-9958-060cd089a602"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:27 GMT + - Wed, 13 Jan 2021 11:58:14 GMT expires: - '-1' pragma: @@ -5089,6 +5226,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -5108,24 +5247,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/4d600872-8d07-4952-858e-bfd24c148a02?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/04a11392-f068-4c6e-9958-060cd089a602?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/4d600872-8d07-4952-858e-bfd24c148a02","name":"4d600872-8d07-4952-858e-bfd24c148a02","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.4401167S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T07:59:53.983253Z","endTime":"2019-10-10T08:00:26.4233697Z","activityId":"f0dfc470-eb33-11e9-929f-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/04a11392-f068-4c6e-9958-060cd089a602","name":"04a11392-f068-4c6e-9958-060cd089a602","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.6481167S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-01-13T11:57:38.3567186Z","endTime":"2021-01-13T11:58:13.0048353Z","activityId":"867148c5-5596-11eb-a860-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '707' + - '725' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:27 GMT + - Wed, 13 Jan 2021 11:58:16 GMT expires: - '-1' pragma: @@ -5141,6 +5280,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -5160,24 +5301,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + 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":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-13T11:52:55.6081444Z","protectedItemDataSourceId":"1499167091","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-13T11:49:32.801Z","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","lastRecoveryPoint":"2021-01-13T11:49:32.801Z"}}' headers: cache-control: - no-cache content-length: - - '1290' + - '1437' content-type: - application/json date: - - Thu, 10 Oct 2019 08:00:28 GMT + - Wed, 13 Jan 2021 11:58:18 GMT expires: - '-1' pragma: @@ -5192,6 +5333,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: 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 3c2a00dfeed..3f46ee398d2 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,24 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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-01-13T11:21:01.1273867Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3511' + - '1140' content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:09 GMT + - Fri, 15 Jan 2021 07:51:43 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -58,30 +60,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;systemdb","name":"saphanadatabase;hxe;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"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/protectableItems/saphanadbinstance;hxe;saphanadbinstance","name":"saphanadbinstance;hxe;saphanadbinstance","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"hxehost","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDBInstance","friendlyName":"HXE","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '6877' + - '3143' content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:11 GMT + - Fri, 15 Jan 2021 07:51:45 GMT expires: - '-1' pragma: @@ -96,6 +99,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -113,26 +118,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy","name":"hana-policy-ccy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Tuesday"],"scheduleRunTimes":["2020-11-08T03:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Tuesday"],"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Tuesday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2020-11-08T03:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Monday"],"scheduleRunTimes":["2020-11-30T12:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1718' + - '1992' content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:12 GMT + - Fri, 15 Jan 2021 07:51:47 GMT expires: - '-1' pragma: @@ -147,6 +153,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -154,7 +162,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "SAPHanaDatabase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupPolicies/hana-policy-ccy", "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' headers: Accept: @@ -166,34 +174,35 @@ interactions: Connection: - keep-alive Content-Length: - - '325' + - '330' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-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/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:23:13 GMT + - Fri, 15 Jan 2021 07:51:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-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/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -219,17 +228,126 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 + response: + body: + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 07:51: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-azurewl + Connection: + - keep-alive + ParameterSetName: + - --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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 + response: + body: + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 07:51: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: + - '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-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -238,7 +356,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:14 GMT + - Fri, 15 Jan 2021 07:51:55 GMT expires: - '-1' pragma: @@ -253,6 +371,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -270,17 +390,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -289,7 +410,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:16 GMT + - Fri, 15 Jan 2021 07:51:56 GMT expires: - '-1' pragma: @@ -304,6 +425,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -321,17 +444,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -340,7 +464,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:17 GMT + - Fri, 15 Jan 2021 07:51:59 GMT expires: - '-1' pragma: @@ -355,6 +479,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -372,17 +498,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -391,7 +518,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:18 GMT + - Fri, 15 Jan 2021 07:52:00 GMT expires: - '-1' pragma: @@ -406,6 +533,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -423,17 +552,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -442,7 +572,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:20 GMT + - Fri, 15 Jan 2021 07:52:01 GMT expires: - '-1' pragma: @@ -457,6 +587,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -474,17 +606,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -493,7 +626,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:21 GMT + - Fri, 15 Jan 2021 07:52:03 GMT expires: - '-1' pragma: @@ -508,6 +641,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -525,17 +660,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -544,7 +680,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:23 GMT + - Fri, 15 Jan 2021 07:52:04 GMT expires: - '-1' pragma: @@ -559,6 +695,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -576,17 +714,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -595,7 +734,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:25 GMT + - Fri, 15 Jan 2021 07:52:06 GMT expires: - '-1' pragma: @@ -610,6 +749,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -627,17 +768,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -646,7 +788,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:26 GMT + - Fri, 15 Jan 2021 07:52:08 GMT expires: - '-1' pragma: @@ -661,6 +803,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -678,17 +822,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -697,7 +842,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:27 GMT + - Fri, 15 Jan 2021 07:52:09 GMT expires: - '-1' pragma: @@ -712,6 +857,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -729,17 +876,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -748,7 +896,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:29 GMT + - Fri, 15 Jan 2021 07:52:10 GMT expires: - '-1' pragma: @@ -763,6 +911,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -780,17 +930,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -799,7 +950,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:30 GMT + - Fri, 15 Jan 2021 07:52:12 GMT expires: - '-1' pragma: @@ -814,6 +965,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -831,17 +984,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -850,7 +1004,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:32 GMT + - Fri, 15 Jan 2021 07:52:14 GMT expires: - '-1' pragma: @@ -865,6 +1019,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -882,17 +1038,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -901,7 +1058,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:32 GMT + - Fri, 15 Jan 2021 07:52:15 GMT expires: - '-1' pragma: @@ -916,6 +1073,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -933,17 +1092,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -952,7 +1112,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:34 GMT + - Fri, 15 Jan 2021 07:52:17 GMT expires: - '-1' pragma: @@ -967,6 +1127,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -984,17 +1146,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1003,7 +1166,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:35 GMT + - Fri, 15 Jan 2021 07:52:18 GMT expires: - '-1' pragma: @@ -1018,6 +1181,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1035,17 +1200,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1054,7 +1220,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:37 GMT + - Fri, 15 Jan 2021 07:52:19 GMT expires: - '-1' pragma: @@ -1069,6 +1235,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1086,17 +1254,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1105,7 +1274,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:38 GMT + - Fri, 15 Jan 2021 07:52:21 GMT expires: - '-1' pragma: @@ -1120,6 +1289,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1137,17 +1308,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1156,7 +1328,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:40 GMT + - Fri, 15 Jan 2021 07:52:22 GMT expires: - '-1' pragma: @@ -1171,6 +1343,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1188,17 +1362,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1207,7 +1382,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:41 GMT + - Fri, 15 Jan 2021 07:52:24 GMT expires: - '-1' pragma: @@ -1222,6 +1397,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1239,17 +1416,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1258,7 +1436,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:42 GMT + - Fri, 15 Jan 2021 07:52:26 GMT expires: - '-1' pragma: @@ -1273,6 +1451,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1290,17 +1470,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1309,7 +1490,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:43 GMT + - Fri, 15 Jan 2021 07:52:27 GMT expires: - '-1' pragma: @@ -1324,6 +1505,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1341,17 +1524,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1360,7 +1544,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:45 GMT + - Fri, 15 Jan 2021 07:52:29 GMT expires: - '-1' pragma: @@ -1375,6 +1559,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1392,17 +1578,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1411,7 +1598,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:47 GMT + - Fri, 15 Jan 2021 07:52:30 GMT expires: - '-1' pragma: @@ -1426,6 +1613,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1443,17 +1632,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1462,7 +1652,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:49 GMT + - Fri, 15 Jan 2021 07:52:31 GMT expires: - '-1' pragma: @@ -1477,6 +1667,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1494,17 +1686,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1513,7 +1706,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:50 GMT + - Fri, 15 Jan 2021 07:52:33 GMT expires: - '-1' pragma: @@ -1528,6 +1721,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1545,17 +1740,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1564,7 +1760,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:51 GMT + - Fri, 15 Jan 2021 07:52:35 GMT expires: - '-1' pragma: @@ -1579,6 +1775,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1596,17 +1794,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1615,7 +1814,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:52 GMT + - Fri, 15 Jan 2021 07:52:36 GMT expires: - '-1' pragma: @@ -1630,6 +1829,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1647,17 +1848,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1666,7 +1868,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:54 GMT + - Fri, 15 Jan 2021 07:52:37 GMT expires: - '-1' pragma: @@ -1681,6 +1883,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1698,17 +1902,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1717,7 +1922,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:54 GMT + - Fri, 15 Jan 2021 07:52:39 GMT expires: - '-1' pragma: @@ -1732,6 +1937,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1749,17 +1956,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1768,7 +1976,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:56 GMT + - Fri, 15 Jan 2021 07:52:40 GMT expires: - '-1' pragma: @@ -1783,6 +1991,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1800,17 +2010,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1819,7 +2030,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:58 GMT + - Fri, 15 Jan 2021 07:52:42 GMT expires: - '-1' pragma: @@ -1834,6 +2045,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1851,17 +2064,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1870,7 +2084,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:23:58 GMT + - Fri, 15 Jan 2021 07:52:44 GMT expires: - '-1' pragma: @@ -1885,6 +2099,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1902,17 +2118,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1921,7 +2138,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:00 GMT + - Fri, 15 Jan 2021 07:52:45 GMT expires: - '-1' pragma: @@ -1936,6 +2153,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1953,17 +2172,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +2192,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:01 GMT + - Fri, 15 Jan 2021 07:52:46 GMT expires: - '-1' pragma: @@ -1987,6 +2207,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -2004,17 +2226,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2023,7 +2246,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:03 GMT + - Fri, 15 Jan 2021 07:52:48 GMT expires: - '-1' pragma: @@ -2038,6 +2261,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -2055,17 +2280,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2074,7 +2300,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:04 GMT + - Fri, 15 Jan 2021 07:52:49 GMT expires: - '-1' pragma: @@ -2089,6 +2315,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2106,17 +2334,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2125,7 +2354,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:06 GMT + - Fri, 15 Jan 2021 07:52:50 GMT expires: - '-1' pragma: @@ -2140,6 +2369,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2157,17 +2388,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2176,7 +2408,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:07 GMT + - Fri, 15 Jan 2021 07:52:53 GMT expires: - '-1' pragma: @@ -2191,6 +2423,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2208,17 +2442,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2227,7 +2462,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:08 GMT + - Fri, 15 Jan 2021 07:52:54 GMT expires: - '-1' pragma: @@ -2242,6 +2477,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2259,17 +2496,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2278,7 +2516,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:10 GMT + - Fri, 15 Jan 2021 07:52:56 GMT expires: - '-1' pragma: @@ -2293,6 +2531,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2310,17 +2550,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2329,7 +2570,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:11 GMT + - Fri, 15 Jan 2021 07:52:57 GMT expires: - '-1' pragma: @@ -2344,6 +2585,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2361,17 +2604,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2380,7 +2624,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:13 GMT + - Fri, 15 Jan 2021 07:52:58 GMT expires: - '-1' pragma: @@ -2395,6 +2639,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2412,17 +2658,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2431,7 +2678,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:14 GMT + - Fri, 15 Jan 2021 07:53:00 GMT expires: - '-1' pragma: @@ -2446,6 +2693,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2463,17 +2712,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2482,7 +2732,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:15 GMT + - Fri, 15 Jan 2021 07:53:01 GMT expires: - '-1' pragma: @@ -2497,6 +2747,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2514,17 +2766,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2533,7 +2786,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:17 GMT + - Fri, 15 Jan 2021 07:53:03 GMT expires: - '-1' pragma: @@ -2548,6 +2801,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2565,17 +2820,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"InProgress","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2584,7 +2840,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:18 GMT + - Fri, 15 Jan 2021 07:53:05 GMT expires: - '-1' pragma: @@ -2599,6 +2855,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2616,17 +2874,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/23ee13fe-acbe-457c-9952-561887ad7988?api-version=2020-10-01 response: body: - string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"Succeeded","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"2019-10-10T07:23:13.5743278Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a05d49fe-8d38-4812-b8ec-a1487eaadf90"}}' + string: '{"id":"23ee13fe-acbe-457c-9952-561887ad7988","name":"23ee13fe-acbe-457c-9952-561887ad7988","status":"Succeeded","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"2021-01-15T07:51:50.8292857Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"687b0031-5b92-46db-8edc-a49fbc0c9738"}}' headers: cache-control: - no-cache @@ -2635,7 +2894,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:20 GMT + - Fri, 15 Jan 2021 07:53:06 GMT expires: - '-1' pragma: @@ -2650,6 +2909,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2667,27 +2928,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g -p --protectable-item + - --vault-name -g -p --protectable-item-type --protectable-item-name --server-name + --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/a05d49fe-8d38-4812-b8ec-a1487eaadf90?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/687b0031-5b92-46db-8edc-a49fbc0c9738?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/a05d49fe-8d38-4812-b8ec-a1487eaadf90","name":"a05d49fe-8d38-4812-b8ec-a1487eaadf90","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M5.4472263S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"2019-10-10T07:24:19.0215541Z","activityId":"d0cafeda-eb2e-11e9-b657-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/687b0031-5b92-46db-8edc-a49fbc0c9738","name":"687b0031-5b92-46db-8edc-a49fbc0c9738","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M14.2486951S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"hana-policy-ccy"}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-15T07:51:50.8292857Z","endTime":"2021-01-15T07:53:05.0779808Z","activityId":"82fd194e-5706-11eb-83f7-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '742' + - '760' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:20 GMT + - Fri, 15 Jan 2021 07:53:08 GMT expires: - '-1' pragma: @@ -2703,6 +2965,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2722,24 +2986,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","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-01-13T11:21:01.1273867Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1273' + - '1128' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:20 GMT + - Fri, 15 Jan 2021 07:53:11 GMT expires: - '-1' pragma: @@ -2754,6 +3018,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2771,17 +3037,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -c -i --backup-type --retain-until --enable-compression + - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + 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":"700789436","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"}}' headers: cache-control: - no-cache @@ -2790,7 +3056,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:21 GMT + - Fri, 15 Jan 2021 07:53:11 GMT expires: - '-1' pragma: @@ -2805,6 +3071,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2812,7 +3080,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-02-14T07:53:12.361405Z"}}' headers: Accept: - application/json @@ -2823,34 +3091,34 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '173' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -c -i --backup-type --retain-until --enable-compression + - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/backup?api-version=2016-12-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/backup?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-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/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:24:22 GMT + - Fri, 15 Jan 2021 07:53:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-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/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2876,17 +3144,123 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -c -i --backup-type --retain-until --enable-compression + - -v -g -c -i --backup-type --enable-compression + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 + response: + body: + string: '{"id":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","name":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 07:53: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --enable-compression + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - 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/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 + response: + body: + string: '{"id":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","name":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Fri, 15 Jan 2021 07:53: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 response: body: - string: '{"id":"fa9e0021-826a-44d1-8549-e1e255c663c9","name":"fa9e0021-826a-44d1-8549-e1e255c663c9","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","name":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2895,7 +3269,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:22 GMT + - Fri, 15 Jan 2021 07:53:17 GMT expires: - '-1' pragma: @@ -2910,6 +3284,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -2927,17 +3303,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -c -i --backup-type --retain-until --enable-compression + - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/59aeb722-69bc-46ce-a8f9-40bb94896d1a?api-version=2020-10-01 response: body: - string: '{"id":"fa9e0021-826a-44d1-8549-e1e255c663c9","name":"fa9e0021-826a-44d1-8549-e1e255c663c9","status":"Succeeded","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"2019-10-10T07:24:22.4934488Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b95d3181-1470-4aed-afa6-678c26e1ce15"}}' + string: '{"id":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","name":"59aeb722-69bc-46ce-a8f9-40bb94896d1a","status":"Succeeded","startTime":"2021-01-15T07:53:13.0717602Z","endTime":"2021-01-15T07:53:13.0717602Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"aed7a599-1b5b-4758-b04e-3f9ebe239783"}}' headers: cache-control: - no-cache @@ -2946,7 +3322,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:23 GMT + - Fri, 15 Jan 2021 07:53:19 GMT expires: - '-1' pragma: @@ -2961,6 +3337,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -2978,28 +3356,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -c -i --backup-type --retain-until --enable-compression + - -v -g -c -i --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.3918946S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8.1225146S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '769' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:24 GMT + - Fri, 15 Jan 2021 07:53:20 GMT expires: - '-1' pragma: @@ -3015,6 +3393,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3034,26 +3414,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.2217718S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT9.8231904S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '769' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:25 GMT + - Fri, 15 Jan 2021 07:53:22 GMT expires: - '-1' pragma: @@ -3069,6 +3449,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3088,26 +3470,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.6202992S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT10.3616058S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '754' + - '770' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:26 GMT + - Fri, 15 Jan 2021 07:53:22 GMT expires: - '-1' pragma: @@ -3123,6 +3505,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3142,26 +3526,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.0626352S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT40.8728114S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '755' + - '770' content-type: - application/json date: - - Thu, 10 Oct 2019 07:24:55 GMT + - Fri, 15 Jan 2021 07:53:53 GMT expires: - '-1' pragma: @@ -3177,6 +3561,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3196,26 +3582,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.6332149S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M11.392172S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '756' + - '771' content-type: - application/json date: - - Thu, 10 Oct 2019 07:25:26 GMT + - Fri, 15 Jan 2021 07:54:24 GMT expires: - '-1' pragma: @@ -3231,6 +3617,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -3250,26 +3638,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M34.8996573S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M41.8980432S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:25:57 GMT + - Fri, 15 Jan 2021 07:54:54 GMT expires: - '-1' pragma: @@ -3285,6 +3673,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3304,26 +3694,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.2463345S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M12.4104576S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '756' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:26:27 GMT + - Fri, 15 Jan 2021 07:55:25 GMT expires: - '-1' pragma: @@ -3339,6 +3729,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3358,26 +3750,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M35.5919117S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M42.9816685S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:26:57 GMT + - Fri, 15 Jan 2021 07:55:55 GMT expires: - '-1' pragma: @@ -3393,6 +3785,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -3412,26 +3806,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M5.9373692S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M13.4862631S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '756' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:27:27 GMT + - Fri, 15 Jan 2021 07:56:26 GMT expires: - '-1' pragma: @@ -3447,6 +3841,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -3466,26 +3862,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M36.8391347S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M44.0125503S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-15T07:53:13.0717602Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '757' + - '772' content-type: - application/json date: - - Thu, 10 Oct 2019 07:27:58 GMT + - Fri, 15 Jan 2021 07:56:57 GMT expires: - '-1' pragma: @@ -3501,6 +3897,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -3520,27 +3918,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M3.912071S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/aed7a599-1b5b-4758-b04e-3f9ebe239783","name":"aed7a599-1b5b-4758-b04e-3f9ebe239783","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M4.3539238S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1952.3086"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"2019-10-10T07:28:26.4055198Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + MB)":"1185.5742"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB [hxehost]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2021-01-15T07:53:13.0717602Z","endTime":"2021-01-15T07:57:17.425684Z","activityId":"b6cc4f7c-5706-11eb-afd6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '839' + - '847' content-type: - application/json date: - - Thu, 10 Oct 2019 07:28:28 GMT + - Fri, 15 Jan 2021 07:57:27 GMT expires: - '-1' pragma: @@ -3556,6 +3954,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -3575,24 +3975,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '1609' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:01 GMT + - Fri, 15 Jan 2021 07:58:00 GMT expires: - '-1' pragma: @@ -3607,6 +4007,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3626,24 +4028,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '1609' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:02 GMT + - Fri, 15 Jan 2021 07:58:01 GMT expires: - '-1' pragma: @@ -3658,6 +4060,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3677,24 +4081,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}]}' + 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/39253522575995","name":"39253522575995","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-15T07:49:51.162Z","type":"Full"}},{"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: cache-control: - no-cache content-length: - - '584' + - '1149' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:03 GMT + - Fri, 15 Jan 2021 07:58:04 GMT expires: - '-1' pragma: @@ -3709,6 +4113,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3722,30 +4128,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup recoveryconfig show Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + 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/protectableItems/saphanasystem;hxe","name":"saphanasystem;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadatabase;hxe;hxe","name":"saphanadatabase;hxe;hxe","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"HXE","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"HXE","protectionState":"NotProtected"}},{"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/protectableItems/saphanadbinstance;hxe;saphanadbinstance","name":"saphanadbinstance;hxe;saphanadbinstance","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"hxehost","serverName":"hxehost","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDBInstance","friendlyName":"HXE","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '6090' + - '2385' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:03 GMT + - Fri, 15 Jan 2021 07:58:05 GMT expires: - '-1' pragma: @@ -3760,6 +4167,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3777,26 +4186,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '1609' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:05 GMT + - Fri, 15 Jan 2021 07:58:08 GMT expires: - '-1' pragma: @@ -3811,6 +4221,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3828,26 +4240,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '1609' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:05 GMT + - Fri, 15 Jan 2021 07:58:10 GMT expires: - '-1' pragma: @@ -3862,6 +4275,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3879,26 +4294,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172?api-version=2019-06-15 + uri: https://management.azure.com/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/39253522575995?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}' + 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/39253522575995","name":"39253522575995","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-15T07:49:51.162Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:06 GMT + - Fri, 15 Jan 2021 07:58:13 GMT expires: - '-1' pragma: @@ -3913,6 +4329,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3920,9 +4338,9 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": - "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3", - "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3", - "databaseName": "H22/h22_restored_sarath_restored_10_10_2019_1259"}}}' + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy", + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;akneema;akneema-hana-ccy", + "databaseName": "HXE/H22"}}}' headers: Accept: - application/json @@ -3933,34 +4351,34 @@ interactions: Connection: - keep-alive Content-Length: - - '611' + - '583' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172/restore?api-version=2019-06-15 + uri: https://management.azure.com/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/39253522575995/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-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/2c606092-e1c7-436c-b6d1-291dc9c6356d?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:29:07 GMT + - Fri, 15 Jan 2021 07:58:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-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/2c606092-e1c7-436c-b6d1-291dc9c6356d?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3988,24 +4406,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/2c606092-e1c7-436c-b6d1-291dc9c6356d?api-version=2020-10-01 response: body: - string: '{"id":"618c444d-765d-4237-8d0b-b38c2392c14e","name":"618c444d-765d-4237-8d0b-b38c2392c14e","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c606092-e1c7-436c-b6d1-291dc9c6356d","name":"2c606092-e1c7-436c-b6d1-291dc9c6356d","status":"Succeeded","startTime":"2021-01-15T07:58:15.5747118Z","endTime":"2021-01-15T07:58:15.5747118Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e7f9330a-621b-4a18-b83a-d68d38b8a596"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:07 GMT + - Fri, 15 Jan 2021 07:58:16 GMT expires: - '-1' pragma: @@ -4020,6 +4438,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -4039,30 +4459,34 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"618c444d-765d-4237-8d0b-b38c2392c14e","name":"618c444d-765d-4237-8d0b-b38c2392c14e","status":"Succeeded","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"2019-10-10T07:29:07.2524932Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"681778b0-bf01-4c0a-b4b0-66747ffcce6e"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.8286647S","actionsInfo":[1],"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-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:08 GMT + - Fri, 15 Jan 2021 07:58: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: @@ -4071,6 +4495,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -4084,33 +4510,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - --vault-name -g --recovery-config + - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.9777472S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.6958986S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '803' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:10 GMT + - Fri, 15 Jan 2021 07:58:20 GMT expires: - '-1' pragma: @@ -4126,6 +4552,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -4145,27 +4573,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.4260286S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5.1926327S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '803' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:10 GMT + - Fri, 15 Jan 2021 07:58:20 GMT expires: - '-1' pragma: @@ -4181,6 +4609,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4200,27 +4630,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.1224526S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT35.6975347S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '803' + - '812' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:11 GMT + - Fri, 15 Jan 2021 07:58:50 GMT expires: - '-1' pragma: @@ -4236,6 +4666,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -4255,27 +4687,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.4790663S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M6.2094357S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '804' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:29:41 GMT + - Fri, 15 Jan 2021 07:59:21 GMT expires: - '-1' pragma: @@ -4291,6 +4723,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -4310,27 +4744,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.7787583S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M36.7593009S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:30:11 GMT + - Fri, 15 Jan 2021 07:59:52 GMT expires: - '-1' pragma: @@ -4346,6 +4780,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4365,27 +4801,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.1438154S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M7.3013917S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:30:41 GMT + - Fri, 15 Jan 2021 08:00:22 GMT expires: - '-1' pragma: @@ -4401,6 +4837,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4420,27 +4858,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.4499988S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M37.8212543S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T07:58:15.5747118Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:31:12 GMT + - Fri, 15 Jan 2021 08:00:53 GMT expires: - '-1' pragma: @@ -4456,6 +4894,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -4475,27 +4915,36 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.0777126S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/e7f9330a-621b-4a18-b83a-d68d38b8a596","name":"e7f9330a-621b-4a18-b83a-d68d38b8a596","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M3.7418462S","actionsInfo":[1],"errorDetails":[{"errorCode":520512,"errorString":"The + source and target systems for restore are incompatible.","errorTitle":"UserErrorIncompatibleSrcTargetSystemsForRestore","recommendations":["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\t "]}],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Failed"}],"propertyBag":{"Job Type":"Recovery to + an alternate database","RestoreDestination":"/HXE/H22"},"dynamicErrorMessage":"[HanaHelper]: + Src and Target are incompatible containers SDC/SystemDB"},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"Failed","startTime":"2021-01-15T07:58:15.5747118Z","endTime":"2021-01-15T08:01:19.316558Z","activityId":"6aa8c801-5707-11eb-b070-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '1695' content-type: - application/json date: - - Thu, 10 Oct 2019 07:31:42 GMT + - Fri, 15 Jan 2021 08:01:25 GMT expires: - '-1' pragma: @@ -4511,6 +4960,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -4524,40 +4975,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoveryconfig show Connection: - keep-alive ParameterSetName: - - -v -g -n + - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.7294026S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + 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":["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\t "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '805' + - '2401' content-type: - application/json date: - - Thu, 10 Oct 2019 07:32:13 GMT + - Fri, 15 Jan 2021 08:01: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: @@ -4566,6 +5021,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -4579,40 +5036,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoveryconfig show Connection: - keep-alive ParameterSetName: - - -v -g -n + - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.0646711S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + 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":["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\t "]}]}},"friendlyName":"systemdb","serverName":"hxehost","parentName":"HXE","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T07:49:51.162Z"}}' headers: cache-control: - no-cache content-length: - - '806' + - '2401' content-type: - application/json date: - - Thu, 10 Oct 2019 07:32:44 GMT + - Fri, 15 Jan 2021 08:01: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: @@ -4621,6 +5082,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -4634,40 +5097,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoveryconfig show Connection: - keep-alive ParameterSetName: - - -v -g -n + - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/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/39253522575995?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M7.5249427S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + 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/39253522575995","name":"39253522575995","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2021-01-15T07:49:51.162Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '805' + - '570' content-type: - application/json date: - - Thu, 10 Oct 2019 07:33:14 GMT + - Fri, 15 Jan 2021 08:02: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: @@ -4676,66 +5135,67 @@ interactions: - 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 + body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": + "OriginalLocation"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurewl Connection: - keep-alive + Content-Length: + - '104' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -v -g -n + - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + 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/39253522575995/restore?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M37.8708401S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + 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/22f0b828-8794-493d-80f9-0c1c958b5c66?api-version=2020-10-01 cache-control: - no-cache content-length: - - '806' - content-type: - - application/json + - '0' date: - - Thu, 10 Oct 2019 07:33:45 GMT + - Fri, 15 Jan 2021 08:02: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/protectedItems/SAPHanaDatabase;hxe;systemdb/operationResults/22f0b828-8794-493d-80f9-0c1c958b5c66?api-version=2020-10-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-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4744,40 +5204,36 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/22f0b828-8794-493d-80f9-0c1c958b5c66?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M8.2528873S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + string: '{"id":"22f0b828-8794-493d-80f9-0c1c958b5c66","name":"22f0b828-8794-493d-80f9-0c1c958b5c66","status":"Succeeded","startTime":"2021-01-15T08:02:03.8002958Z","endTime":"2021-01-15T08:02:03.8002958Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"56ad011e-2c1b-4115-83d1-232f115ea6af"}}' headers: cache-control: - no-cache content-length: - - '805' + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 07:34:14 GMT + - Fri, 15 Jan 2021 08:02: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: @@ -4786,6 +5242,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -4799,33 +5257,33 @@ 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M38.5433677S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.5416679S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:34:45 GMT + - Fri, 15 Jan 2021 08:02:07 GMT expires: - '-1' pragma: @@ -4841,6 +5299,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -4860,27 +5320,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M8.8651272S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6.6563569S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:35:15 GMT + - Fri, 15 Jan 2021 08:02:10 GMT expires: - '-1' pragma: @@ -4896,6 +5356,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4915,27 +5377,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M39.8135658S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7.1482141S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '811' content-type: - application/json date: - - Thu, 10 Oct 2019 07:35:47 GMT + - Fri, 15 Jan 2021 08:02:10 GMT expires: - '-1' pragma: @@ -4951,6 +5413,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4970,27 +5434,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M10.1871967S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT37.6480072S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '812' content-type: - application/json date: - - Thu, 10 Oct 2019 07:36:17 GMT + - Fri, 15 Jan 2021 08:02:40 GMT expires: - '-1' pragma: @@ -5006,6 +5470,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -5025,27 +5491,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M41.1739565S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M8.1651322S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:36:48 GMT + - Fri, 15 Jan 2021 08:03:11 GMT expires: - '-1' pragma: @@ -5061,6 +5527,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -5080,27 +5548,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M11.5227656S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M38.7364351S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:37:18 GMT + - Fri, 15 Jan 2021 08:03:42 GMT expires: - '-1' pragma: @@ -5116,6 +5584,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -5135,27 +5605,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M42.2797811S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M9.2516821S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:37:49 GMT + - Fri, 15 Jan 2021 08:04:12 GMT expires: - '-1' pragma: @@ -5171,6 +5641,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -5190,667 +5662,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT9M6.3114496S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1952.3086","Job Type":"Recovery to an alternate database","RestoreDestination":"HANADemoIDC3/H22/h22_restored_sarath_restored_10_10_2019_1259"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore - (Full)","status":"Completed","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"2019-10-10T07:38:13.5639428Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '975' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1459' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1459' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}' - headers: - cache-control: - - no-cache - content-length: - - '572' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": - "OriginalLocation"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172/restore?api-version=2019-06-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 10 Oct 2019 07:38:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-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 restore restore-azurewl - Connection: - - keep-alive - ParameterSetName: - - --vault-name -g --recovery-config - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 - response: - body: - string: '{"id":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","name":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 - response: - body: - string: '{"id":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","name":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","status":"Succeeded","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"2019-10-10T07:38:53.0890879Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f57854d7-d806-4681-b152-6fc868af0d2d"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-azurewl - Connection: - - keep-alive - ParameterSetName: - - --vault-name -g --recovery-config - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.4954582S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '803' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.964732S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '802' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.2755715S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '803' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:38: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.8937331S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '804' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.6527324S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '805' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.0084557S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M40.9958438S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:40:27 GMT + - Fri, 15 Jan 2021 08:04:44 GMT expires: - '-1' pragma: @@ -5866,6 +5698,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -5885,27 +5719,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.7539506S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M12.7375273S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:40:58 GMT + - Fri, 15 Jan 2021 08:05:16 GMT expires: - '-1' pragma: @@ -5921,6 +5755,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -5940,137 +5776,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.1409455S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M43.302317S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:41: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.6425512S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '805' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:41: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-powered-by: - - ASP.NET - 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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.5756771S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '806' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:42:30 GMT + - Fri, 15 Jan 2021 08:05:46 GMT expires: - '-1' pragma: @@ -6086,6 +5812,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -6105,27 +5833,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M8.5448568S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M13.8093494S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:43:00 GMT + - Fri, 15 Jan 2021 08:06:17 GMT expires: - '-1' pragma: @@ -6141,6 +5869,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -6160,27 +5890,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M38.8941653S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M44.382116S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '813' content-type: - application/json date: - - Thu, 10 Oct 2019 07:43:31 GMT + - Fri, 15 Jan 2021 08:06:47 GMT expires: - '-1' pragma: @@ -6196,6 +5926,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -6215,27 +5947,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M9.2731661S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M14.93453S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '805' + - '812' content-type: - application/json date: - - Thu, 10 Oct 2019 07:44:01 GMT + - Fri, 15 Jan 2021 08:07:18 GMT expires: - '-1' pragma: @@ -6251,6 +5983,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -6270,27 +6004,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M40.3354964S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M45.4469492S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:44:33 GMT + - Fri, 15 Jan 2021 08:07:49 GMT expires: - '-1' pragma: @@ -6306,6 +6040,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -6325,27 +6061,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M10.6430893S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M16.0134332S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:45:03 GMT + - Fri, 15 Jan 2021 08:08:19 GMT expires: - '-1' pragma: @@ -6361,6 +6097,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -6380,27 +6118,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M41.5268424S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M46.5425647S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:45:34 GMT + - Fri, 15 Jan 2021 08:08:50 GMT expires: - '-1' pragma: @@ -6416,6 +6154,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -6435,27 +6175,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M11.8465922S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M17.0823939S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-15T08:02:03.8002958Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '806' + - '814' content-type: - application/json date: - - Thu, 10 Oct 2019 07:46:04 GMT + - Fri, 15 Jan 2021 08:09:20 GMT expires: - '-1' pragma: @@ -6471,6 +6211,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -6490,28 +6232,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M35.0756175S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/56ad011e-2c1b-4115-83d1-232f115ea6af","name":"56ad011e-2c1b-4115-83d1-232f115ea6af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M34.8018819S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"1952.3086","Job Type":"Recovery to the original database","RestoreDestination":"HANADemoIDC3/H22/H22_RESTORED_SARATH"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH - [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore - (Full)","status":"Completed","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"2019-10-10T07:46:28.1647054Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + MB)":"1185.5742","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-01-15 + 07:49:51Z","RestoreDestination":"hxehost/HXE/SYSTEMDB"}},"isUserTriggered":true,"entityFriendlyName":"SYSTEMDB + [hxehost]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-01-15T08:02:03.8002958Z","endTime":"2021-01-15T08:09:38.6021777Z","activityId":"f2972d65-5707-11eb-9af2-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '951' + - '993' content-type: - application/json date: - - Thu, 10 Oct 2019 07:46:35 GMT + - Fri, 15 Jan 2021 08:09:52 GMT expires: - '-1' pragma: @@ -6527,6 +6269,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -6546,24 +6290,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T08:04:57.493Z"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '1761' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:06 GMT + - Fri, 15 Jan 2021 08:10:25 GMT expires: - '-1' pragma: @@ -6578,6 +6322,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -6602,28 +6348,28 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-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/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 07:47:06 GMT + - Fri, 15 Jan 2021 08:10:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-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/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6651,177 +6397,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 - response: - body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:47:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 - response: - body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:47: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 - response: - body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 07:47: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-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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:12 GMT + - Fri, 15 Jan 2021 08:10:28 GMT expires: - '-1' pragma: @@ -6836,6 +6429,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -6855,24 +6450,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:13 GMT + - Fri, 15 Jan 2021 08:10:30 GMT expires: - '-1' pragma: @@ -6887,6 +6482,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -6906,24 +6503,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:14 GMT + - Fri, 15 Jan 2021 08:10:31 GMT expires: - '-1' pragma: @@ -6938,6 +6535,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6957,24 +6556,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:15 GMT + - Fri, 15 Jan 2021 08:10:35 GMT expires: - '-1' pragma: @@ -6989,6 +6588,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -7008,24 +6609,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:17 GMT + - Fri, 15 Jan 2021 08:10:36 GMT expires: - '-1' pragma: @@ -7040,6 +6641,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -7059,24 +6662,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:18 GMT + - Fri, 15 Jan 2021 08:10:38 GMT expires: - '-1' pragma: @@ -7091,6 +6694,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -7110,24 +6715,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:20 GMT + - Fri, 15 Jan 2021 08:10:39 GMT expires: - '-1' pragma: @@ -7142,6 +6747,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -7161,24 +6768,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:22 GMT + - Fri, 15 Jan 2021 08:10:41 GMT expires: - '-1' pragma: @@ -7193,6 +6800,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -7212,24 +6821,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:24 GMT + - Fri, 15 Jan 2021 08:10:42 GMT expires: - '-1' pragma: @@ -7244,6 +6853,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -7263,24 +6874,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:25 GMT + - Fri, 15 Jan 2021 08:10:43 GMT expires: - '-1' pragma: @@ -7295,6 +6906,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -7314,24 +6927,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:26 GMT + - Fri, 15 Jan 2021 08:10:45 GMT expires: - '-1' pragma: @@ -7346,6 +6959,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -7365,24 +6980,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:28 GMT + - Fri, 15 Jan 2021 08:10:47 GMT expires: - '-1' pragma: @@ -7397,6 +7012,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -7416,24 +7033,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:29 GMT + - Fri, 15 Jan 2021 08:10:49 GMT expires: - '-1' pragma: @@ -7448,6 +7065,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -7467,24 +7086,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:30 GMT + - Fri, 15 Jan 2021 08:10:50 GMT expires: - '-1' pragma: @@ -7499,6 +7118,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -7518,24 +7139,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:32 GMT + - Fri, 15 Jan 2021 08:10:52 GMT expires: - '-1' pragma: @@ -7550,6 +7171,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -7569,24 +7192,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:34 GMT + - Fri, 15 Jan 2021 08:10:53 GMT expires: - '-1' pragma: @@ -7601,6 +7224,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -7620,24 +7245,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:34 GMT + - Fri, 15 Jan 2021 08:10:55 GMT expires: - '-1' pragma: @@ -7652,6 +7277,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -7671,24 +7298,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:36 GMT + - Fri, 15 Jan 2021 08:10:56 GMT expires: - '-1' pragma: @@ -7703,6 +7330,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -7722,24 +7351,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:37 GMT + - Fri, 15 Jan 2021 08:10:57 GMT expires: - '-1' pragma: @@ -7754,6 +7383,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -7773,24 +7404,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:39 GMT + - Fri, 15 Jan 2021 08:10:59 GMT expires: - '-1' pragma: @@ -7805,6 +7436,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -7824,24 +7457,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"InProgress","startTime":"2021-01-15T08:10:27.427997Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:40 GMT + - Fri, 15 Jan 2021 08:11:00 GMT expires: - '-1' pragma: @@ -7856,6 +7489,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -7875,24 +7510,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupOperations/48ca50c0-4c5c-4417-8f87-e4c4fefc75f2?api-version=2020-10-01 response: body: - string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"Succeeded","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"2019-10-10T07:47:07.6039312Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"603f211f-5a3e-440f-9bbf-6a4a3e818dd8"}}' + string: '{"id":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","name":"48ca50c0-4c5c-4417-8f87-e4c4fefc75f2","status":"Succeeded","startTime":"2021-01-15T08:10:27.427997Z","endTime":"2021-01-15T08:10:27.427997Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"dc3432c6-cc1f-4185-9fe2-9ec036d2151e"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:41 GMT + - Fri, 15 Jan 2021 08:11:03 GMT expires: - '-1' pragma: @@ -7907,6 +7542,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -7926,24 +7563,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/603f211f-5a3e-440f-9bbf-6a4a3e818dd8?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dc3432c6-cc1f-4185-9fe2-9ec036d2151e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/603f211f-5a3e-440f-9bbf-6a4a3e818dd8","name":"603f211f-5a3e-440f-9bbf-6a4a3e818dd8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.1398345S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"2019-10-10T07:47:40.7437657Z","activityId":"27bf8f8a-eb32-11e9-af98-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupJobs/dc3432c6-cc1f-4185-9fe2-9ec036d2151e","name":"dc3432c6-cc1f-4185-9fe2-9ec036d2151e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.5310772S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"systemdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-01-15T08:10:27.427997Z","endTime":"2021-01-15T08:11:01.9590742Z","activityId":"1d9770ff-5709-11eb-8100-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '708' + - '724' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:41 GMT + - Fri, 15 Jan 2021 08:11:05 GMT expires: - '-1' pragma: @@ -7959,6 +7596,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -7978,24 +7617,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + 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-01-15T07:53:13.0717602Z","protectedItemDataSourceId":"700789436","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-15T07:49:51.162Z","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-01-15T08:04:57.493Z"}}' headers: cache-control: - no-cache content-length: - - '1291' + - '1588' content-type: - application/json date: - - Thu, 10 Oct 2019 07:47:42 GMT + - Fri, 15 Jan 2021 08:11:07 GMT expires: - '-1' pragma: @@ -8010,6 +7649,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml index 3977ff6c6da..49b2f73950a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-ccy/backupProtectionContainers?api-version=2020-10-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/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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-01-13T11:21:01.1273867Z","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":""}}]}},"friendlyName":"akneema-hana-ccy","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3511' + - '1140' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:25 GMT + - Wed, 13 Jan 2021 11:35:41 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -64,27 +66,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + 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":"1187187888","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"}}' headers: cache-control: - no-cache content-length: - - '1716' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:25 GMT + - Wed, 13 Jan 2021 11:35:43 GMT expires: - '-1' pragma: @@ -99,6 +98,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -118,24 +119,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/76072765135896","name":"76072765135896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:53:39.362Z","type":"Full"}}]}' + 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/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:26 GMT + - Wed, 13 Jan 2021 11:35:44 GMT expires: - '-1' pragma: @@ -150,6 +151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -163,33 +166,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint logchain show + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + 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":"1187187888","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"}}' headers: cache-control: - no-cache content-length: - - '1716' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:26 GMT + - Wed, 13 Jan 2021 11:35:44 GMT expires: - '-1' pragma: @@ -204,6 +204,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -217,30 +219,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint logchain show + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2019-06-15&$filter=restorePointQueryType%20eq%20%27Log%27 + uri: https://management.azure.com/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=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2019-10-10T07:53:39.362Z","endTime":"2019-10-10T09:08:06.366Z"}],"type":"Log"}}]}' + 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/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '657' + - '578' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:27 GMT + - Wed, 13 Jan 2021 11:35:45 GMT expires: - '-1' pragma: @@ -255,6 +257,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -268,33 +272,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint logchain show + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 + uri: https://management.azure.com/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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + 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":"1187187888","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"}}' headers: cache-control: - no-cache content-length: - - '1716' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:28 GMT + - Wed, 13 Jan 2021 11:35:53 GMT expires: - '-1' pragma: @@ -309,6 +310,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -322,30 +325,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint logchain show + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2019-06-15&$filter=restorePointQueryType%20eq%20%27Log%27 + uri: https://management.azure.com/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=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2019-10-10T07:53:39.362Z","endTime":"2019-10-10T09:08:06.366Z"}],"type":"Log"}}]}' + 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/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '657' + - '578' content-type: - application/json date: - - Thu, 10 Oct 2019 09:11:28 GMT + - Wed, 13 Jan 2021 11:35:54 GMT expires: - '-1' pragma: @@ -360,1387 +363,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - 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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1716' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2019-06-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 10 Oct 2019 09:11:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperationResults/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-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: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:11: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:12: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:12: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 - response: - body: - string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"Succeeded","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"2019-10-10T09:11:30.2907058Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8a8afce6-be09-4a9c-beb5-b0d712139f30"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:12: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/8a8afce6-be09-4a9c-beb5-b0d712139f30?api-version=2019-06-15 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/8a8afce6-be09-4a9c-beb5-b0d712139f30","name":"8a8afce6-be09-4a9c-beb5-b0d712139f30","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.2667557S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"2019-10-10T09:12:02.5574615Z","activityId":"f1c8d540-eb3d-11e9-9dbc-186024943d4f"}}' - headers: - cache-control: - - no-cache - content-length: - - '711' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 09:12: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: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml index 0436b50c9ac..20c827fd610 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;deletethis43234","name":"VMAppContainer;Compute;shswain-rg;deletethis43234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"deletethis43234","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/deletethis43234"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsadsa","name":"VMAppContainer;Compute;shswain-rg;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsfsdfd","name":"VMAppContainer;Compute;shswain-rg;dsfsdfd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsfsdfd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsfsdfd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;shswain-sles-1","name":"VMAppContainer;Compute;shswain-rg;shswain-sles-1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-sles-1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/shswain-sles-1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' headers: cache-control: - no-cache content-length: - - '13092' + - '10409' content-type: - application/json date: - - Tue, 09 Jul 2019 03:48:57 GMT + - Mon, 18 Jan 2021 05:24:17 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -68,18 +70,20 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -87,11 +91,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:48:59 GMT + - Mon, 18 Jan 2021 05:24:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -119,18 +123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -138,11 +144,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:48:59 GMT + - Mon, 18 Jan 2021 05:24:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -151,6 +157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -168,18 +176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -187,11 +197,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:00 GMT + - Mon, 18 Jan 2021 05:24:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -200,6 +210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -217,18 +229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -236,11 +250,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:01 GMT + - Mon, 18 Jan 2021 05:24:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -249,6 +263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -266,18 +282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -285,11 +303,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:03 GMT + - Mon, 18 Jan 2021 05:24:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -298,6 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -315,18 +335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -334,11 +356,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:04 GMT + - Mon, 18 Jan 2021 05:24:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -347,6 +369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -364,18 +388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -383,11 +409,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:06 GMT + - Mon, 18 Jan 2021 05:24:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -396,6 +422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -413,18 +441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -432,11 +462,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:08 GMT + - Mon, 18 Jan 2021 05:24:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -445,6 +475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -462,18 +494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -481,11 +515,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:09 GMT + - Mon, 18 Jan 2021 05:24:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -494,6 +528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -511,18 +547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -530,11 +568,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:10 GMT + - Mon, 18 Jan 2021 05:24:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -543,6 +581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -560,18 +600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -579,11 +621,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:12 GMT + - Mon, 18 Jan 2021 05:24:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -592,6 +634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -609,18 +653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -628,11 +674,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:13 GMT + - Mon, 18 Jan 2021 05:24:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -641,6 +687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -658,18 +706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -677,11 +727,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:14 GMT + - Mon, 18 Jan 2021 05:24:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -690,6 +740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -707,18 +759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -726,11 +780,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:16 GMT + - Mon, 18 Jan 2021 05:24:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -739,6 +793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -756,18 +812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -775,11 +833,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:17 GMT + - Mon, 18 Jan 2021 05:24:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -788,6 +846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -805,18 +865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -824,11 +886,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:18 GMT + - Mon, 18 Jan 2021 05:24:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -837,6 +899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -854,18 +918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -873,11 +939,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:19 GMT + - Mon, 18 Jan 2021 05:24:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -886,6 +952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -903,18 +971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -922,11 +992,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:21 GMT + - Mon, 18 Jan 2021 05:24:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -935,6 +1005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -952,18 +1024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1045,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:22 GMT + - Mon, 18 Jan 2021 05:24:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -984,6 +1058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1001,18 +1077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1020,11 +1098,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:24 GMT + - Mon, 18 Jan 2021 05:24:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1033,6 +1111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1050,18 +1130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1069,11 +1151,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:26 GMT + - Mon, 18 Jan 2021 05:24:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1082,6 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1099,18 +1183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1118,11 +1204,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:27 GMT + - Mon, 18 Jan 2021 05:24:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1131,6 +1217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1148,18 +1236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1167,11 +1257,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:28 GMT + - Mon, 18 Jan 2021 05:24:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1180,6 +1270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1197,18 +1289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1216,11 +1310,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:29 GMT + - Mon, 18 Jan 2021 05:24:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1229,6 +1323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1246,18 +1342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1265,11 +1363,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:31 GMT + - Mon, 18 Jan 2021 05:24:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1278,6 +1376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1295,18 +1395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1314,11 +1416,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:33 GMT + - Mon, 18 Jan 2021 05:24:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1327,6 +1429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1344,18 +1448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1363,11 +1469,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:33 GMT + - Mon, 18 Jan 2021 05:24:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1376,6 +1482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1393,18 +1501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1412,11 +1522,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:35 GMT + - Mon, 18 Jan 2021 05:24:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1425,6 +1535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1442,18 +1554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1461,11 +1575,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:36 GMT + - Mon, 18 Jan 2021 05:24:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1474,6 +1588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1491,18 +1607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1510,11 +1628,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:37 GMT + - Mon, 18 Jan 2021 05:24:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1523,6 +1641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1540,18 +1660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1559,11 +1681,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:39 GMT + - Mon, 18 Jan 2021 05:24:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1572,6 +1694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1589,18 +1713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1608,11 +1734,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:41 GMT + - Mon, 18 Jan 2021 05:24:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1621,6 +1747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1638,18 +1766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1657,11 +1787,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:42 GMT + - Mon, 18 Jan 2021 05:24:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1670,6 +1800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1687,18 +1819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1706,11 +1840,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:43 GMT + - Mon, 18 Jan 2021 05:24:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1719,6 +1853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1736,18 +1872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1755,11 +1893,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:44 GMT + - Mon, 18 Jan 2021 05:24:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1768,6 +1906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1785,18 +1925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1804,11 +1946,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:46 GMT + - Mon, 18 Jan 2021 05:25:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1817,6 +1959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1834,18 +1978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1853,11 +1999,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:47 GMT + - Mon, 18 Jan 2021 05:25:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1866,6 +2012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1883,18 +2031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1902,11 +2052,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:49 GMT + - Mon, 18 Jan 2021 05:25:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1915,6 +2065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1932,18 +2084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1951,11 +2105,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:50 GMT + - Mon, 18 Jan 2021 05:25:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -1964,6 +2118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -1981,18 +2137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2000,11 +2158,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:51 GMT + - Mon, 18 Jan 2021 05:25:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2013,6 +2171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2030,18 +2190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2049,11 +2211,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:53 GMT + - Mon, 18 Jan 2021 05:25:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2062,6 +2224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2079,18 +2243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2098,11 +2264,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:54 GMT + - Mon, 18 Jan 2021 05:25:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2111,6 +2277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2128,18 +2296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2147,11 +2317,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:55 GMT + - Mon, 18 Jan 2021 05:25:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2160,6 +2330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2177,18 +2349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2196,11 +2370,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:56 GMT + - Mon, 18 Jan 2021 05:25:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2209,6 +2383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2226,18 +2402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2245,11 +2423,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:58 GMT + - Mon, 18 Jan 2021 05:25:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2258,6 +2436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2275,18 +2455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2294,11 +2476,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:49:59 GMT + - Mon, 18 Jan 2021 05:25:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2307,6 +2489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2324,18 +2508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2343,11 +2529,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:01 GMT + - Mon, 18 Jan 2021 05:25:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2356,6 +2542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2373,18 +2561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2392,11 +2582,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:03 GMT + - Mon, 18 Jan 2021 05:25:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2405,6 +2595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2422,18 +2614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2441,11 +2635,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:04 GMT + - Mon, 18 Jan 2021 05:25:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2454,6 +2648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2471,18 +2667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2490,11 +2688,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:05 GMT + - Mon, 18 Jan 2021 05:25:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2503,6 +2701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2520,18 +2720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2539,11 +2741,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:07 GMT + - Mon, 18 Jan 2021 05:25:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2552,6 +2754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2569,18 +2773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2588,11 +2794,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:08 GMT + - Mon, 18 Jan 2021 05:25:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2601,6 +2807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2618,18 +2826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2637,11 +2847,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:10 GMT + - Mon, 18 Jan 2021 05:25:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2650,6 +2860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2667,18 +2879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2686,11 +2900,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:11 GMT + - Mon, 18 Jan 2021 05:25:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2699,6 +2913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2716,18 +2932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2735,11 +2953,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:12 GMT + - Mon, 18 Jan 2021 05:25:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2748,6 +2966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2765,18 +2985,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2784,11 +3006,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:14 GMT + - Mon, 18 Jan 2021 05:25:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2797,6 +3019,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -2814,18 +3038,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2833,11 +3059,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:15 GMT + - Mon, 18 Jan 2021 05:25:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2846,6 +3072,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -2863,18 +3091,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2882,11 +3112,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:16 GMT + - Mon, 18 Jan 2021 05:25:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2895,6 +3125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -2912,18 +3144,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2931,11 +3165,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:18 GMT + - Mon, 18 Jan 2021 05:25:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2944,6 +3178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -2961,18 +3197,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2980,11 +3218,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:19 GMT + - Mon, 18 Jan 2021 05:25:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -2993,6 +3231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3010,18 +3250,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3029,11 +3271,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:20 GMT + - Mon, 18 Jan 2021 05:25:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3042,6 +3284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -3059,18 +3303,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3078,11 +3324,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:22 GMT + - Mon, 18 Jan 2021 05:25:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3091,6 +3337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -3108,18 +3356,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3127,11 +3377,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:23 GMT + - Mon, 18 Jan 2021 05:25:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3140,6 +3390,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -3157,18 +3409,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3176,11 +3430,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:25 GMT + - Mon, 18 Jan 2021 05:25:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3189,6 +3443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -3206,18 +3462,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3225,11 +3483,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:26 GMT + - Mon, 18 Jan 2021 05:25:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3238,6 +3496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -3255,18 +3515,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3274,11 +3536,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:28 GMT + - Mon, 18 Jan 2021 05:25:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3287,6 +3549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -3304,18 +3568,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3323,11 +3589,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:29 GMT + - Mon, 18 Jan 2021 05:25:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3336,6 +3602,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -3353,18 +3621,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3372,11 +3642,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:31 GMT + - Mon, 18 Jan 2021 05:25:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3385,6 +3655,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -3402,18 +3674,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3421,11 +3695,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:31 GMT + - Mon, 18 Jan 2021 05:25:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3434,6 +3708,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -3451,18 +3727,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3470,11 +3748,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:34 GMT + - Mon, 18 Jan 2021 05:25:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3483,6 +3761,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -3500,18 +3780,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3519,11 +3801,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:35 GMT + - Mon, 18 Jan 2021 05:25:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3532,6 +3814,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -3549,18 +3833,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3568,11 +3854,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:37 GMT + - Mon, 18 Jan 2021 05:25:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3581,6 +3867,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -3598,18 +3886,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3617,11 +3907,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:38 GMT + - Mon, 18 Jan 2021 05:25:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3630,6 +3920,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -3647,18 +3939,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3666,11 +3960,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:40 GMT + - Mon, 18 Jan 2021 05:25:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3679,6 +3973,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -3696,18 +3992,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3715,11 +4013,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:40 GMT + - Mon, 18 Jan 2021 05:25:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3728,6 +4026,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -3745,18 +4045,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3764,11 +4066,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:42 GMT + - Mon, 18 Jan 2021 05:25:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3777,6 +4079,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -3794,18 +4098,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3813,11 +4119,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:44 GMT + - Mon, 18 Jan 2021 05:25:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3826,6 +4132,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -3843,18 +4151,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3862,11 +4172,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:45 GMT + - Mon, 18 Jan 2021 05:25:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3875,6 +4185,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -3892,18 +4204,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3911,11 +4225,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:47 GMT + - Mon, 18 Jan 2021 05:25:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3924,6 +4238,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -3941,18 +4257,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3960,11 +4278,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:47 GMT + - Mon, 18 Jan 2021 05:25:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -3973,6 +4291,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -3990,18 +4310,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4009,11 +4331,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:49 GMT + - Mon, 18 Jan 2021 05:25:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4022,6 +4344,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -4039,18 +4363,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4058,11 +4384,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:50 GMT + - Mon, 18 Jan 2021 05:25:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4071,6 +4397,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -4088,18 +4416,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4107,11 +4437,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:52 GMT + - Mon, 18 Jan 2021 05:25:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4120,6 +4450,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -4137,18 +4469,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4156,11 +4490,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:54 GMT + - Mon, 18 Jan 2021 05:25:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4169,6 +4503,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -4186,18 +4522,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4205,11 +4543,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:55 GMT + - Mon, 18 Jan 2021 05:26:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4218,6 +4556,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -4235,18 +4575,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4254,11 +4596,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:56 GMT + - Mon, 18 Jan 2021 05:26:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4267,6 +4609,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -4284,18 +4628,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4303,11 +4649,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:58 GMT + - Mon, 18 Jan 2021 05:26:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4316,6 +4662,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -4333,18 +4681,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4352,11 +4702,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:50:59 GMT + - Mon, 18 Jan 2021 05:26:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4365,6 +4715,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -4382,18 +4734,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4401,11 +4755,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:01 GMT + - Mon, 18 Jan 2021 05:26:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4414,6 +4768,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -4431,18 +4787,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4450,11 +4808,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:02 GMT + - Mon, 18 Jan 2021 05:26:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4463,6 +4821,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -4480,18 +4840,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4499,11 +4861,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:03 GMT + - Mon, 18 Jan 2021 05:26:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4512,6 +4874,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -4529,18 +4893,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4548,11 +4914,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:05 GMT + - Mon, 18 Jan 2021 05:26:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4561,6 +4927,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -4578,18 +4946,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4597,11 +4967,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:06 GMT + - Mon, 18 Jan 2021 05:26:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4610,6 +4980,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -4627,18 +4999,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4646,11 +5020,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:07 GMT + - Mon, 18 Jan 2021 05:26:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4659,6 +5033,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -4676,18 +5052,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4695,11 +5073,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:08 GMT + - Mon, 18 Jan 2021 05:26:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4708,6 +5086,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -4725,18 +5105,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4744,11 +5126,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:10 GMT + - Mon, 18 Jan 2021 05:26:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4757,6 +5139,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -4774,18 +5158,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4793,11 +5179,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:11 GMT + - Mon, 18 Jan 2021 05:26:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4806,6 +5192,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -4823,18 +5211,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4842,11 +5232,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:13 GMT + - Mon, 18 Jan 2021 05:26:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4855,6 +5245,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -4872,18 +5264,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4891,11 +5285,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:15 GMT + - Mon, 18 Jan 2021 05:26:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4904,6 +5298,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -4921,18 +5317,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4940,11 +5338,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:16 GMT + - Mon, 18 Jan 2021 05:26:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -4953,6 +5351,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -4970,18 +5370,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4989,11 +5391,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:18 GMT + - Mon, 18 Jan 2021 05:26:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5002,6 +5404,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -5019,18 +5423,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5038,11 +5444,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:19 GMT + - Mon, 18 Jan 2021 05:26:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5051,6 +5457,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -5068,18 +5476,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5087,11 +5497,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:20 GMT + - Mon, 18 Jan 2021 05:26:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5100,6 +5510,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -5117,18 +5529,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5136,11 +5550,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:21 GMT + - Mon, 18 Jan 2021 05:26:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5149,6 +5563,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -5166,18 +5582,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5185,11 +5603,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:23 GMT + - Mon, 18 Jan 2021 05:26:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5198,6 +5616,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' x-powered-by: - ASP.NET status: @@ -5215,18 +5635,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5234,11 +5656,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:25 GMT + - Mon, 18 Jan 2021 05:26:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5247,6 +5669,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -5264,18 +5688,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5283,11 +5709,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:26 GMT + - Mon, 18 Jan 2021 05:26:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5296,6 +5722,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -5313,18 +5741,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5332,11 +5762,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:28 GMT + - Mon, 18 Jan 2021 05:26:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5345,6 +5775,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -5362,18 +5794,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5381,11 +5815,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:51:30 GMT + - Mon, 18 Jan 2021 05:26:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -5394,6 +5828,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -5411,6696 +5847,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-09T03:49:06.3241909Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51: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-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: - - -v -g -b - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-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/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-09T03:49:06.3241909Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1171' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protectable-item show - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -s -n -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3966' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection auto-enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '1076' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "itemId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup", - "protectionIntentItemType": "RecoveryServiceVaultItem"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection auto-enable-for-azurewl - Connection: - - keep-alive - Content-Length: - - '597' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/d5ad5d50-2adc-4c0d-899f-fdb123d607e0?api-version=2017-07-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/d5ad5d50-2adc-4c0d-899f-fdb123d607e0","name":"d5ad5d50-2adc-4c0d-899f-fdb123d607e0","type":"Microsoft.RecoveryServices/vaults/backupProtectionIntent","properties":{"protectionIntentItemType":"RecoveryServiceVaultItem","backupManagementType":"AzureWorkload","sourceResourceId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8","itemId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8/protectableItems/MSSQLSERVER","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","protectionState":"NotProtected"}}' - headers: - cache-control: - - no-cache - content-length: - - '1184' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51: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-writes: - - '1199' - 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 auto-for-azurewl - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -v -g -i - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/8a3fa939-2c2b-429a-8582-5d751aee2348?api-version=2017-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Tue, 09 Jul 2019 03:51:35 GMT - expires: - - '-1' - 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: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -v -g -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 09 Jul 2019 03:51:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:51:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:52:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:53:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:54:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12108,11 +5868,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:42 GMT + - Mon, 18 Jan 2021 05:26:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12121,6 +5881,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -12134,22 +5896,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12157,11 +5921,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:43 GMT + - Mon, 18 Jan 2021 05:26:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12170,6 +5934,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -12183,22 +5949,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12206,11 +5974,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:45 GMT + - Mon, 18 Jan 2021 05:26:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12219,6 +5987,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -12232,22 +6002,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12255,11 +6027,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:46 GMT + - Mon, 18 Jan 2021 05:26:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12268,6 +6040,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' x-powered-by: - ASP.NET status: @@ -12281,22 +6055,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12304,11 +6080,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:47 GMT + - Mon, 18 Jan 2021 05:26:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12317,6 +6093,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -12330,22 +6108,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12353,11 +6133,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:48 GMT + - Mon, 18 Jan 2021 05:26:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12366,6 +6146,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' x-powered-by: - ASP.NET status: @@ -12379,22 +6161,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12402,11 +6186,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:50 GMT + - Mon, 18 Jan 2021 05:26:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12415,6 +6199,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -12428,22 +6214,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12451,11 +6239,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:51 GMT + - Mon, 18 Jan 2021 05:26:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12464,6 +6252,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -12477,22 +6267,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12500,11 +6292,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:52 GMT + - Mon, 18 Jan 2021 05:26:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12513,6 +6305,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -12526,22 +6320,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12549,11 +6345,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:54 GMT + - Mon, 18 Jan 2021 05:26:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12562,6 +6358,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -12575,22 +6373,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12598,11 +6398,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:55 GMT + - Mon, 18 Jan 2021 05:26:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12611,6 +6411,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -12624,22 +6426,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12647,11 +6451,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:58 GMT + - Mon, 18 Jan 2021 05:26:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12660,6 +6464,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -12673,22 +6479,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12696,11 +6504,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:54:59 GMT + - Mon, 18 Jan 2021 05:26:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12709,6 +6517,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -12722,22 +6532,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12745,11 +6557,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:00 GMT + - Mon, 18 Jan 2021 05:26:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12758,6 +6570,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -12771,22 +6585,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12794,11 +6610,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:02 GMT + - Mon, 18 Jan 2021 05:26:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12807,6 +6623,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -12820,22 +6638,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12843,11 +6663,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:03 GMT + - Mon, 18 Jan 2021 05:26:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12856,6 +6676,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -12869,22 +6691,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12892,11 +6716,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:04 GMT + - Mon, 18 Jan 2021 05:26:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12905,6 +6729,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -12918,22 +6744,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12941,11 +6769,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:06 GMT + - Mon, 18 Jan 2021 05:26:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -12954,6 +6782,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' x-powered-by: - ASP.NET status: @@ -12967,22 +6797,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12990,11 +6822,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:07 GMT + - Mon, 18 Jan 2021 05:26:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13003,6 +6835,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -13016,22 +6850,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13039,11 +6875,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:09 GMT + - Mon, 18 Jan 2021 05:26:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13052,6 +6888,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' x-powered-by: - ASP.NET status: @@ -13065,22 +6903,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13088,11 +6928,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:10 GMT + - Mon, 18 Jan 2021 05:26:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13101,6 +6941,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -13114,22 +6956,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13137,11 +6981,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:11 GMT + - Mon, 18 Jan 2021 05:26:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13150,6 +6994,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '20' x-powered-by: - ASP.NET status: @@ -13163,22 +7009,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13186,11 +7034,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:12 GMT + - Mon, 18 Jan 2021 05:26:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13199,6 +7047,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -13212,22 +7062,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13235,11 +7087,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:14 GMT + - Mon, 18 Jan 2021 05:27:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13248,6 +7100,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '18' x-powered-by: - ASP.NET status: @@ -13261,22 +7115,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13284,11 +7140,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:16 GMT + - Mon, 18 Jan 2021 05:27:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13297,6 +7153,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '17' x-powered-by: - ASP.NET status: @@ -13310,22 +7168,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13333,11 +7193,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:16 GMT + - Mon, 18 Jan 2021 05:27:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13346,6 +7206,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '16' x-powered-by: - ASP.NET status: @@ -13359,22 +7221,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13382,11 +7246,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:18 GMT + - Mon, 18 Jan 2021 05:27:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13395,6 +7259,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '15' x-powered-by: - ASP.NET status: @@ -13408,22 +7274,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13431,11 +7299,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:19 GMT + - Mon, 18 Jan 2021 05:27:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13444,6 +7312,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '14' x-powered-by: - ASP.NET status: @@ -13457,22 +7327,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13480,11 +7352,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:21 GMT + - Mon, 18 Jan 2021 05:27:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13493,6 +7365,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '13' x-powered-by: - ASP.NET status: @@ -13506,22 +7380,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13529,11 +7405,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:23 GMT + - Mon, 18 Jan 2021 05:27:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13542,6 +7418,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '12' x-powered-by: - ASP.NET status: @@ -13555,22 +7433,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13578,11 +7458,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:23 GMT + - Mon, 18 Jan 2021 05:27:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13591,6 +7471,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11' x-powered-by: - ASP.NET status: @@ -13604,22 +7486,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13627,11 +7511,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:25 GMT + - Mon, 18 Jan 2021 05:27:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13640,6 +7524,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '10' x-powered-by: - ASP.NET status: @@ -13653,22 +7539,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13676,11 +7564,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:26 GMT + - Mon, 18 Jan 2021 05:27:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13689,6 +7577,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' x-powered-by: - ASP.NET status: @@ -13702,22 +7592,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13725,11 +7617,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:28 GMT + - Mon, 18 Jan 2021 05:27:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13738,6 +7630,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '8' x-powered-by: - ASP.NET status: @@ -13751,22 +7645,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13774,11 +7670,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:30 GMT + - Mon, 18 Jan 2021 05:27:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13787,6 +7683,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '7' x-powered-by: - ASP.NET status: @@ -13800,22 +7698,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13823,11 +7723,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:30 GMT + - Mon, 18 Jan 2021 05:27:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13836,6 +7736,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '6' x-powered-by: - ASP.NET status: @@ -13849,22 +7751,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13872,11 +7776,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:32 GMT + - Mon, 18 Jan 2021 05:27:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13885,6 +7789,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '5' x-powered-by: - ASP.NET status: @@ -13898,22 +7804,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13921,11 +7829,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:33 GMT + - Mon, 18 Jan 2021 05:27:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13934,6 +7842,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4' x-powered-by: - ASP.NET status: @@ -13947,22 +7857,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13970,11 +7882,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:35 GMT + - Mon, 18 Jan 2021 05:27:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -13983,6 +7895,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '3' x-powered-by: - ASP.NET status: @@ -13996,22 +7910,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14019,11 +7935,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:36 GMT + - Mon, 18 Jan 2021 05:27:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -14032,55 +7948,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: + x-ms-ratelimit-remaining-subscription-resource-requests: - '2' - content-type: - - application/json - date: - - Tue, 09 Jul 2019 03:55:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff x-powered-by: - ASP.NET status: @@ -14094,22 +7963,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14117,11 +7988,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:39 GMT + - Mon, 18 Jan 2021 05:27:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -14130,6 +8001,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1' x-powered-by: - ASP.NET status: @@ -14143,22 +8016,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14166,11 +8041,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:40 GMT + - Mon, 18 Jan 2021 05:27:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -14179,6 +8054,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '0' x-powered-by: - ASP.NET status: @@ -14192,22 +8069,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14215,11 +8094,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:42 GMT + - Mon, 18 Jan 2021 05:27:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: @@ -14228,6 +8107,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '-1' x-powered-by: - ASP.NET status: @@ -14241,47 +8122,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-18T05:25:25.2938226Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '2' + - '1081' content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:44 GMT + - Mon, 18 Jan 2021 05:38:14 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14290,47 +8175,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-18T05:25:25.2938226Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '2' + - '4879' content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:44 GMT + - Mon, 18 Jan 2021 05:38:14 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14339,47 +8244,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection auto-enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '2' + - '1076' content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:46 GMT + - Mon, 18 Jan 2021 05:38:15 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14388,96 +8297,114 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection auto-enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '2' + - '6073' content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:47 GMT + - Mon, 18 Jan 2021 05:38:17 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureWorkload", "itemId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup", + "protectionIntentItemType": "RecoveryServiceVaultItem"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection auto-enable-for-azurewl Connection: - keep-alive + Content-Length: + - '597' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -v -g -n -y + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/7ec9429d-bea2-4573-9562-799406b69e6e?api-version=2017-07-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/7ec9429d-bea2-4573-9562-799406b69e6e","name":"7ec9429d-bea2-4573-9562-799406b69e6e","type":"Microsoft.RecoveryServices/vaults/backupProtectionIntent","properties":{"protectionIntentItemType":"RecoveryServiceVaultItem","backupManagementType":"AzureWorkload","sourceResourceId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8","itemId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8/protectableItems/MSSQLSERVER","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","protectionState":"NotProtected"}}' headers: cache-control: - no-cache content-length: - - '2' + - '1184' content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:48 GMT + - Mon, 18 Jan 2021 05:38:17 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -14486,47 +8413,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection auto-disable-for-azurewl Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -v -g -n -y + - -v -g --item-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/94aa6a7e-cd90-4c5d-a797-cf8b25668846?api-version=2017-07-01 response: body: - string: '{}' + string: '' headers: cache-control: - no-cache - content-length: - - '2' - content-type: - - application/json date: - - Tue, 09 Jul 2019 03:55:50 GMT + - Mon, 18 Jan 2021 05:38:19 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-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-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -14538,39 +8461,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: - string: '{}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Tue, 09 Jul 2019 03:55:52 GMT + - Mon, 18 Jan 2021 05:38:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?fabricName=Azure?api-version=2020-10-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-powered-by: - ASP.NET status: @@ -14588,18 +8513,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14607,11 +8534,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:53 GMT + - Mon, 18 Jan 2021 05:38:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14620,6 +8547,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -14637,18 +8566,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14656,11 +8587,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:54 GMT + - Mon, 18 Jan 2021 05:38:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14669,6 +8600,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -14686,18 +8619,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14705,11 +8640,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:56 GMT + - Mon, 18 Jan 2021 05:38:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14718,6 +8653,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -14735,18 +8672,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14754,11 +8693,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:58 GMT + - Mon, 18 Jan 2021 05:38:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14767,6 +8706,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -14784,18 +8725,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14803,11 +8746,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:58 GMT + - Mon, 18 Jan 2021 05:38:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14816,6 +8759,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -14833,18 +8778,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14852,11 +8799,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:55:59 GMT + - Mon, 18 Jan 2021 05:38:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14865,6 +8812,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -14882,18 +8831,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14901,11 +8852,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:01 GMT + - Mon, 18 Jan 2021 05:38:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14914,6 +8865,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -14931,18 +8884,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14950,11 +8905,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:03 GMT + - Mon, 18 Jan 2021 05:38:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -14963,6 +8918,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -14980,18 +8937,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14999,11 +8958,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:04 GMT + - Mon, 18 Jan 2021 05:38:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15012,6 +8971,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -15029,18 +8990,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15048,11 +9011,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:06 GMT + - Mon, 18 Jan 2021 05:38:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15061,6 +9024,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -15078,18 +9043,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15097,11 +9064,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:07 GMT + - Mon, 18 Jan 2021 05:38:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15110,6 +9077,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -15127,18 +9096,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15146,11 +9117,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:09 GMT + - Mon, 18 Jan 2021 05:38:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15159,6 +9130,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -15176,18 +9149,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15195,11 +9170,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:10 GMT + - Mon, 18 Jan 2021 05:38:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15208,6 +9183,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -15225,18 +9202,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15244,11 +9223,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:12 GMT + - Mon, 18 Jan 2021 05:38:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15257,6 +9236,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -15274,18 +9255,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15293,11 +9276,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:13 GMT + - Mon, 18 Jan 2021 05:38:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15306,6 +9289,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -15323,18 +9308,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15342,11 +9329,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:15 GMT + - Mon, 18 Jan 2021 05:38:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15355,6 +9342,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -15372,18 +9361,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15391,11 +9382,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:16 GMT + - Mon, 18 Jan 2021 05:38:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15404,6 +9395,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -15421,18 +9414,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15440,11 +9435,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:17 GMT + - Mon, 18 Jan 2021 05:38:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15453,6 +9448,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -15470,18 +9467,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15489,11 +9488,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:19 GMT + - Mon, 18 Jan 2021 05:38:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15502,6 +9501,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -15519,18 +9520,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15538,11 +9541,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:21 GMT + - Mon, 18 Jan 2021 05:38:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15551,6 +9554,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -15568,18 +9573,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15587,11 +9594,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:22 GMT + - Mon, 18 Jan 2021 05:38:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15600,6 +9607,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -15617,18 +9626,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15636,11 +9647,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:23 GMT + - Mon, 18 Jan 2021 05:38:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15649,6 +9660,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -15666,18 +9679,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15685,11 +9700,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:25 GMT + - Mon, 18 Jan 2021 05:38:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15698,6 +9713,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -15715,18 +9732,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15734,11 +9753,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:27 GMT + - Mon, 18 Jan 2021 05:38:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15747,6 +9766,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -15764,18 +9785,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15783,11 +9806,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:27 GMT + - Mon, 18 Jan 2021 05:38:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15796,6 +9819,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -15813,18 +9838,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15832,11 +9859,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:29 GMT + - Mon, 18 Jan 2021 05:38:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15845,6 +9872,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -15862,18 +9891,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15881,11 +9912,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:30 GMT + - Mon, 18 Jan 2021 05:38:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15894,6 +9925,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -15911,18 +9944,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15930,11 +9965,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:32 GMT + - Mon, 18 Jan 2021 05:38:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15943,6 +9978,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -15960,18 +9997,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15979,11 +10018,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:34 GMT + - Mon, 18 Jan 2021 05:38:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -15992,6 +10031,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -16009,18 +10050,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16028,11 +10071,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:34 GMT + - Mon, 18 Jan 2021 05:38:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16041,6 +10084,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -16058,18 +10103,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16077,11 +10124,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:36 GMT + - Mon, 18 Jan 2021 05:38:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16090,6 +10137,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -16107,18 +10156,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16126,11 +10177,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:37 GMT + - Mon, 18 Jan 2021 05:38:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16139,6 +10190,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -16156,18 +10209,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16175,11 +10230,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:39 GMT + - Mon, 18 Jan 2021 05:39:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16188,6 +10243,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -16205,18 +10262,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16224,11 +10283,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:41 GMT + - Mon, 18 Jan 2021 05:39:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16237,6 +10296,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -16254,18 +10315,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16273,11 +10336,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:42 GMT + - Mon, 18 Jan 2021 05:39:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16286,6 +10349,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -16303,18 +10368,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16322,11 +10389,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:43 GMT + - Mon, 18 Jan 2021 05:39:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16335,6 +10402,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -16352,18 +10421,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16371,11 +10442,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:44 GMT + - Mon, 18 Jan 2021 05:39:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16384,6 +10455,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -16401,18 +10474,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16420,11 +10495,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:47 GMT + - Mon, 18 Jan 2021 05:39:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16433,6 +10508,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -16450,18 +10527,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16469,11 +10548,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:48 GMT + - Mon, 18 Jan 2021 05:39:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16482,6 +10561,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -16499,18 +10580,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16518,11 +10601,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:49 GMT + - Mon, 18 Jan 2021 05:39:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16531,6 +10614,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -16548,18 +10633,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16567,11 +10654,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:51 GMT + - Mon, 18 Jan 2021 05:39:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16580,6 +10667,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -16597,18 +10686,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16616,11 +10707,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:52 GMT + - Mon, 18 Jan 2021 05:39:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16629,6 +10720,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -16646,18 +10739,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16665,11 +10760,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:54 GMT + - Mon, 18 Jan 2021 05:39:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16678,6 +10773,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -16695,18 +10792,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16714,11 +10813,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:55 GMT + - Mon, 18 Jan 2021 05:39:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16727,6 +10826,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -16744,18 +10845,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16763,11 +10866,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:56 GMT + - Mon, 18 Jan 2021 05:39:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16776,6 +10879,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -16793,18 +10898,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16812,11 +10919,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:58 GMT + - Mon, 18 Jan 2021 05:39:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16825,6 +10932,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -16842,18 +10951,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16861,11 +10972,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:56:58 GMT + - Mon, 18 Jan 2021 05:39:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16874,6 +10985,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -16891,18 +11004,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16910,11 +11025,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:00 GMT + - Mon, 18 Jan 2021 05:39:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16923,6 +11038,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -16940,18 +11057,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16959,11 +11078,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:01 GMT + - Mon, 18 Jan 2021 05:39:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -16972,6 +11091,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -16989,18 +11110,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17008,11 +11131,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:03 GMT + - Mon, 18 Jan 2021 05:39:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17021,6 +11144,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -17038,18 +11163,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17057,11 +11184,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:04 GMT + - Mon, 18 Jan 2021 05:39:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17070,6 +11197,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -17087,18 +11216,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17106,11 +11237,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:06 GMT + - Mon, 18 Jan 2021 05:39:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17119,6 +11250,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -17136,18 +11269,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17155,11 +11290,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:07 GMT + - Mon, 18 Jan 2021 05:39:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17168,6 +11303,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -17185,18 +11322,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17204,11 +11343,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:08 GMT + - Mon, 18 Jan 2021 05:39:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17217,6 +11356,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -17234,18 +11375,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17253,11 +11396,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:09 GMT + - Mon, 18 Jan 2021 05:39:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17266,6 +11409,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -17283,18 +11428,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17302,11 +11449,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:11 GMT + - Mon, 18 Jan 2021 05:39:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17315,6 +11462,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -17332,18 +11481,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17351,11 +11502,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:12 GMT + - Mon, 18 Jan 2021 05:39:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17364,6 +11515,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -17381,18 +11534,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17400,11 +11555,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:14 GMT + - Mon, 18 Jan 2021 05:39:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17413,6 +11568,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -17430,18 +11587,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17449,11 +11608,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:15 GMT + - Mon, 18 Jan 2021 05:39:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17462,6 +11621,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -17479,18 +11640,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17498,11 +11661,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:16 GMT + - Mon, 18 Jan 2021 05:39:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17511,6 +11674,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -17528,18 +11693,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17547,11 +11714,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:17 GMT + - Mon, 18 Jan 2021 05:39:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17560,6 +11727,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -17577,18 +11746,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17596,11 +11767,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:19 GMT + - Mon, 18 Jan 2021 05:39:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17609,6 +11780,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -17626,18 +11799,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17645,11 +11820,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:21 GMT + - Mon, 18 Jan 2021 05:39:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17658,6 +11833,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -17675,18 +11852,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17694,11 +11873,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:22 GMT + - Mon, 18 Jan 2021 05:39:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17707,6 +11886,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -17724,18 +11905,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17743,11 +11926,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:24 GMT + - Mon, 18 Jan 2021 05:39:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17756,6 +11939,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -17773,18 +11958,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17792,11 +11979,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:25 GMT + - Mon, 18 Jan 2021 05:39:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17805,6 +11992,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -17822,18 +12011,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17841,11 +12032,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:27 GMT + - Mon, 18 Jan 2021 05:39:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17854,6 +12045,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -17871,18 +12064,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17890,11 +12085,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:28 GMT + - Mon, 18 Jan 2021 05:39:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17903,6 +12098,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -17920,18 +12117,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17939,11 +12138,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:29 GMT + - Mon, 18 Jan 2021 05:39:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -17952,6 +12151,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -17969,18 +12170,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -17988,11 +12191,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:30 GMT + - Mon, 18 Jan 2021 05:39:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18001,6 +12204,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -18018,18 +12223,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18037,11 +12244,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:32 GMT + - Mon, 18 Jan 2021 05:39:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18050,6 +12257,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -18067,18 +12276,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18086,11 +12297,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:33 GMT + - Mon, 18 Jan 2021 05:39:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18099,6 +12310,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -18116,18 +12329,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18135,11 +12350,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:35 GMT + - Mon, 18 Jan 2021 05:39:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18148,6 +12363,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -18165,18 +12382,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18184,11 +12403,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:36 GMT + - Mon, 18 Jan 2021 05:39:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18197,6 +12416,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -18214,18 +12435,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18233,11 +12456,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:37 GMT + - Mon, 18 Jan 2021 05:39:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18246,6 +12469,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -18263,18 +12488,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18282,11 +12509,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:39 GMT + - Mon, 18 Jan 2021 05:39:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18295,6 +12522,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -18312,18 +12541,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18331,11 +12562,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:41 GMT + - Mon, 18 Jan 2021 05:39:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18344,6 +12575,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -18361,18 +12594,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18380,11 +12615,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:41 GMT + - Mon, 18 Jan 2021 05:39:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18393,6 +12628,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -18410,18 +12647,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18429,11 +12668,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:43 GMT + - Mon, 18 Jan 2021 05:39:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18442,6 +12681,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -18459,18 +12700,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18478,11 +12721,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:45 GMT + - Mon, 18 Jan 2021 05:39:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18491,6 +12734,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -18508,18 +12753,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18527,11 +12774,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:45 GMT + - Mon, 18 Jan 2021 05:40:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18540,6 +12787,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -18557,18 +12806,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18576,11 +12827,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:47 GMT + - Mon, 18 Jan 2021 05:40:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18589,6 +12840,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -18606,18 +12859,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18625,11 +12880,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:49 GMT + - Mon, 18 Jan 2021 05:40:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18638,6 +12893,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -18655,18 +12912,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18674,11 +12933,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:50 GMT + - Mon, 18 Jan 2021 05:40:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18687,6 +12946,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -18704,18 +12965,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18723,11 +12986,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:52 GMT + - Mon, 18 Jan 2021 05:40:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18736,6 +12999,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -18753,18 +13018,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18772,11 +13039,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:53 GMT + - Mon, 18 Jan 2021 05:40:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18785,6 +13052,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -18802,18 +13071,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18821,11 +13092,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:54 GMT + - Mon, 18 Jan 2021 05:40:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18834,6 +13105,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -18851,18 +13124,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18870,11 +13145,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:55 GMT + - Mon, 18 Jan 2021 05:40:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18883,6 +13158,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -18900,18 +13177,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18919,11 +13198,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:57 GMT + - Mon, 18 Jan 2021 05:40:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18932,6 +13211,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -18949,18 +13230,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -18968,11 +13251,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:58 GMT + - Mon, 18 Jan 2021 05:40:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -18981,6 +13264,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -18998,18 +13283,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -19017,11 +13304,11 @@ interactions: content-type: - application/json date: - - Tue, 09 Jul 2019 03:57:59 GMT + - Mon, 18 Jan 2021 05:40:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 pragma: - no-cache server: @@ -19030,6 +13317,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -19047,14 +13336,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 response: body: string: '' @@ -19064,7 +13353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Jul 2019 03:58:01 GMT + - Mon, 18 Jan 2021 05:40:14 GMT expires: - '-1' pragma: @@ -19073,6 +13362,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -19090,26 +13381,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3719' content-type: - application/json date: - - Tue, 09 Jul 2019 03:58:01 GMT + - Mon, 18 Jan 2021 05:40:15 GMT expires: - '-1' pragma: @@ -19124,6 +13431,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml index 85105d16507..51f82a5019d 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmnpb2n","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxj2c5","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","name":"VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm757zh","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Compute/virtualMachines/clitest-vm757zh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","name":"VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxhsp4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw/providers/Microsoft.Compute/virtualMachines/clitest-vmxhsp4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","name":"VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmzyo75","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","name":"VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7oe3h","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h/providers/Microsoft.Compute/virtualMachines/clitest-vm7oe3h"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","name":"VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7pkgm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw/providers/Microsoft.Compute/virtualMachines/clitest-vm7pkgm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","name":"VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmpu4sw","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb/providers/Microsoft.Compute/virtualMachines/clitest-vmpu4sw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmjunig","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmvsxff","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmsruqi","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' headers: cache-control: - no-cache content-length: - - '10392' + - '20177' content-type: - application/json date: - - Wed, 17 Jul 2019 08:59:55 GMT + - Sat, 16 Jan 2021 17:00:07 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -68,20 +70,20 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -89,11 +91,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 08:59:56 GMT + - Sat, 16 Jan 2021 17:00:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -121,20 +123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -142,11 +144,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 08:59:57 GMT + - Sat, 16 Jan 2021 17:00:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -155,6 +157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -172,20 +176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -193,11 +197,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 08:59:58 GMT + - Sat, 16 Jan 2021 17:00:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -206,6 +210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -223,20 +229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -244,11 +250,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 08:59:59 GMT + - Sat, 16 Jan 2021 17:00:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -257,6 +263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -274,20 +282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -295,11 +303,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:00 GMT + - Sat, 16 Jan 2021 17:00:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -308,6 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -325,20 +335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -346,11 +356,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:03 GMT + - Sat, 16 Jan 2021 17:00:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -359,6 +369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -376,20 +388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -397,11 +409,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:04 GMT + - Sat, 16 Jan 2021 17:00:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -410,6 +422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -427,20 +441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -448,11 +462,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:06 GMT + - Sat, 16 Jan 2021 17:00:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -461,6 +475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -478,20 +494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -499,11 +515,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:07 GMT + - Sat, 16 Jan 2021 17:00:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -512,6 +528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -529,20 +547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -550,11 +568,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:08 GMT + - Sat, 16 Jan 2021 17:00:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -563,6 +581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -580,20 +600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -601,11 +621,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:09 GMT + - Sat, 16 Jan 2021 17:00:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -614,6 +634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -631,20 +653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -652,11 +674,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:11 GMT + - Sat, 16 Jan 2021 17:00:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -665,6 +687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -682,20 +706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -703,11 +727,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:12 GMT + - Sat, 16 Jan 2021 17:00:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -716,6 +740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -733,20 +759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -754,11 +780,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:13 GMT + - Sat, 16 Jan 2021 17:00:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -767,6 +793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -784,20 +812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -805,11 +833,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:15 GMT + - Sat, 16 Jan 2021 17:00:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -818,6 +846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -835,20 +865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -856,11 +886,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:16 GMT + - Sat, 16 Jan 2021 17:00:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -869,6 +899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -886,20 +918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -907,11 +939,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:18 GMT + - Sat, 16 Jan 2021 17:00:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -920,6 +952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -937,20 +971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -958,11 +992,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:19 GMT + - Sat, 16 Jan 2021 17:00:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -971,6 +1005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -988,20 +1024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1009,11 +1045,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:21 GMT + - Sat, 16 Jan 2021 17:00:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1022,6 +1058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1039,20 +1077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1060,11 +1098,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:22 GMT + - Sat, 16 Jan 2021 17:00:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1073,6 +1111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1090,20 +1130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1111,11 +1151,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:23 GMT + - Sat, 16 Jan 2021 17:00:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1124,6 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1141,20 +1183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1162,11 +1204,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:25 GMT + - Sat, 16 Jan 2021 17:00:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1175,6 +1217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1192,20 +1236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1213,11 +1257,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:26 GMT + - Sat, 16 Jan 2021 17:00:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1226,6 +1270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1243,20 +1289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1264,11 +1310,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:27 GMT + - Sat, 16 Jan 2021 17:00:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1277,6 +1323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1294,20 +1342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1315,11 +1363,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:29 GMT + - Sat, 16 Jan 2021 17:00:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1328,6 +1376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1345,20 +1395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1366,11 +1416,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:30 GMT + - Sat, 16 Jan 2021 17:00:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1379,6 +1429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1396,20 +1448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1417,11 +1469,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:31 GMT + - Sat, 16 Jan 2021 17:00:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1430,6 +1482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1447,20 +1501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1468,11 +1522,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:33 GMT + - Sat, 16 Jan 2021 17:00:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1481,6 +1535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1498,20 +1554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1519,11 +1575,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:34 GMT + - Sat, 16 Jan 2021 17:00:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1532,6 +1588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1549,20 +1607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1570,11 +1628,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:35 GMT + - Sat, 16 Jan 2021 17:00:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1583,6 +1641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1600,20 +1660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1621,11 +1681,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:37 GMT + - Sat, 16 Jan 2021 17:00:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1634,6 +1694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1651,20 +1713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1672,11 +1734,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:38 GMT + - Sat, 16 Jan 2021 17:00:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1685,6 +1747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1702,20 +1766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1723,11 +1787,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:39 GMT + - Sat, 16 Jan 2021 17:00:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1736,6 +1800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1753,20 +1819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1774,11 +1840,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:41 GMT + - Sat, 16 Jan 2021 17:00:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1787,6 +1853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1804,20 +1872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1825,11 +1893,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:42 GMT + - Sat, 16 Jan 2021 17:00:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1838,6 +1906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1855,20 +1925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1876,11 +1946,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:43 GMT + - Sat, 16 Jan 2021 17:00:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1889,6 +1959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1906,20 +1978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1927,11 +1999,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:45 GMT + - Sat, 16 Jan 2021 17:00:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1940,6 +2012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1957,20 +2031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1978,11 +2052,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:47 GMT + - Sat, 16 Jan 2021 17:00:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -1991,6 +2065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -2008,20 +2084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2029,11 +2105,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:47 GMT + - Sat, 16 Jan 2021 17:00:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2042,6 +2118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -2059,20 +2137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2080,11 +2158,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:48 GMT + - Sat, 16 Jan 2021 17:00:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2093,6 +2171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2110,20 +2190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2131,11 +2211,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:50 GMT + - Sat, 16 Jan 2021 17:00:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2144,6 +2224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2161,20 +2243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2182,11 +2264,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:52 GMT + - Sat, 16 Jan 2021 17:00:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2195,6 +2277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2212,20 +2296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2233,11 +2317,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:53 GMT + - Sat, 16 Jan 2021 17:01:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2246,6 +2330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2263,20 +2349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2284,11 +2370,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:54 GMT + - Sat, 16 Jan 2021 17:01:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2297,6 +2383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2314,20 +2402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2335,11 +2423,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:56 GMT + - Sat, 16 Jan 2021 17:01:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2348,6 +2436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2365,20 +2455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2386,11 +2476,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:57 GMT + - Sat, 16 Jan 2021 17:01:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2399,6 +2489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2416,20 +2508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2437,11 +2529,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:00:59 GMT + - Sat, 16 Jan 2021 17:01:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2450,6 +2542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2467,20 +2561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2488,11 +2582,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:00 GMT + - Sat, 16 Jan 2021 17:01:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2501,6 +2595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2518,20 +2614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2539,11 +2635,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:02 GMT + - Sat, 16 Jan 2021 17:01:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2552,6 +2648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2569,20 +2667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2590,11 +2688,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:04 GMT + - Sat, 16 Jan 2021 17:01:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2603,6 +2701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2620,20 +2720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2641,11 +2741,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:05 GMT + - Sat, 16 Jan 2021 17:01:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2654,6 +2754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2671,20 +2773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2692,11 +2794,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:06 GMT + - Sat, 16 Jan 2021 17:01:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2705,6 +2807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2722,20 +2826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2743,11 +2847,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:08 GMT + - Sat, 16 Jan 2021 17:01:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2756,6 +2860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2773,20 +2879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2794,11 +2900,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:09 GMT + - Sat, 16 Jan 2021 17:01:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2807,6 +2913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2824,20 +2932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2845,11 +2953,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:10 GMT + - Sat, 16 Jan 2021 17:01:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2858,6 +2966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2875,20 +2985,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2896,11 +3006,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:12 GMT + - Sat, 16 Jan 2021 17:01:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2909,6 +3019,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -2926,20 +3038,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2947,11 +3059,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:13 GMT + - Sat, 16 Jan 2021 17:01:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -2960,6 +3072,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -2977,20 +3091,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2998,11 +3112,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:14 GMT + - Sat, 16 Jan 2021 17:01:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3011,6 +3125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -3028,20 +3144,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3049,11 +3165,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:16 GMT + - Sat, 16 Jan 2021 17:01:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3062,6 +3178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -3079,20 +3197,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3100,11 +3218,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:17 GMT + - Sat, 16 Jan 2021 17:01:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3113,6 +3231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3130,20 +3250,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3151,11 +3271,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:19 GMT + - Sat, 16 Jan 2021 17:01:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3164,6 +3284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -3181,20 +3303,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3202,11 +3324,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:21 GMT + - Sat, 16 Jan 2021 17:01:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3215,6 +3337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -3232,20 +3356,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3253,11 +3377,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:22 GMT + - Sat, 16 Jan 2021 17:01:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3266,6 +3390,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -3283,20 +3409,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3304,11 +3430,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:23 GMT + - Sat, 16 Jan 2021 17:01:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3317,6 +3443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -3334,20 +3462,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3355,11 +3483,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:24 GMT + - Sat, 16 Jan 2021 17:01:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3368,6 +3496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -3385,20 +3515,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3406,11 +3536,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:26 GMT + - Sat, 16 Jan 2021 17:01:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3419,6 +3549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -3436,20 +3568,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3457,11 +3589,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:27 GMT + - Sat, 16 Jan 2021 17:01:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3470,6 +3602,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -3487,20 +3621,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3508,11 +3642,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:28 GMT + - Sat, 16 Jan 2021 17:01:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3521,6 +3655,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -3538,20 +3674,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3559,11 +3695,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:30 GMT + - Sat, 16 Jan 2021 17:01:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3572,6 +3708,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -3589,20 +3727,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3610,11 +3748,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:32 GMT + - Sat, 16 Jan 2021 17:01:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3623,6 +3761,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -3640,20 +3780,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3661,11 +3801,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:33 GMT + - Sat, 16 Jan 2021 17:01:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3674,6 +3814,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -3691,20 +3833,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3712,11 +3854,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:34 GMT + - Sat, 16 Jan 2021 17:01:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3725,6 +3867,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -3742,20 +3886,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3763,11 +3907,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:36 GMT + - Sat, 16 Jan 2021 17:01:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3776,6 +3920,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -3793,20 +3939,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3814,11 +3960,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:38 GMT + - Sat, 16 Jan 2021 17:01:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3827,6 +3973,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -3844,20 +3992,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3865,11 +4013,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:39 GMT + - Sat, 16 Jan 2021 17:01:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3878,6 +4026,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -3895,20 +4045,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3916,11 +4066,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:39 GMT + - Sat, 16 Jan 2021 17:01:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3929,6 +4079,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -3946,20 +4098,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3967,11 +4119,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:41 GMT + - Sat, 16 Jan 2021 17:01:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -3980,6 +4132,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -3997,20 +4151,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4018,11 +4172,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:42 GMT + - Sat, 16 Jan 2021 17:01:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4031,6 +4185,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -4048,20 +4204,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4069,11 +4225,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:44 GMT + - Sat, 16 Jan 2021 17:01:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4082,6 +4238,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -4099,20 +4257,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4120,11 +4278,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:46 GMT + - Sat, 16 Jan 2021 17:01:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4133,6 +4291,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -4150,20 +4310,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4171,11 +4331,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:48 GMT + - Sat, 16 Jan 2021 17:01:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4184,6 +4344,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -4201,20 +4363,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4222,11 +4384,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:49 GMT + - Sat, 16 Jan 2021 17:01:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4235,6 +4397,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -4252,20 +4416,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4273,11 +4437,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:51 GMT + - Sat, 16 Jan 2021 17:01:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4286,6 +4450,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -4303,20 +4469,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4324,11 +4490,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:51 GMT + - Sat, 16 Jan 2021 17:01:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4337,6 +4503,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -4354,20 +4522,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4375,11 +4543,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:53 GMT + - Sat, 16 Jan 2021 17:01:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4388,6 +4556,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -4405,20 +4575,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4426,11 +4596,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:55 GMT + - Sat, 16 Jan 2021 17:01:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4439,6 +4609,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -4456,20 +4628,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4477,11 +4649,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:56 GMT + - Sat, 16 Jan 2021 17:01:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4490,6 +4662,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -4507,20 +4681,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4528,11 +4702,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:57 GMT + - Sat, 16 Jan 2021 17:01:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4541,6 +4715,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -4558,20 +4734,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4579,11 +4755,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:01:59 GMT + - Sat, 16 Jan 2021 17:01:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4592,6 +4768,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -4609,20 +4787,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4630,11 +4808,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:00 GMT + - Sat, 16 Jan 2021 17:01:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4643,6 +4821,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -4660,20 +4840,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4681,11 +4861,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:01 GMT + - Sat, 16 Jan 2021 17:02:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4694,6 +4874,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -4711,20 +4893,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4732,11 +4914,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:03 GMT + - Sat, 16 Jan 2021 17:02:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4745,6 +4927,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -4762,20 +4946,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4783,11 +4967,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:04 GMT + - Sat, 16 Jan 2021 17:02:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4796,6 +4980,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -4813,20 +4999,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4834,11 +5020,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:05 GMT + - Sat, 16 Jan 2021 17:02:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4847,6 +5033,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -4864,20 +5052,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4885,11 +5073,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:07 GMT + - Sat, 16 Jan 2021 17:02:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4898,6 +5086,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -4915,20 +5105,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4936,11 +5126,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:09 GMT + - Sat, 16 Jan 2021 17:02:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -4949,6 +5139,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -4966,20 +5158,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4987,11 +5179,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:10 GMT + - Sat, 16 Jan 2021 17:02:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5000,6 +5192,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -5017,20 +5211,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5038,11 +5232,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:11 GMT + - Sat, 16 Jan 2021 17:02:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5051,6 +5245,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -5068,20 +5264,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5089,11 +5285,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:12 GMT + - Sat, 16 Jan 2021 17:02:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5102,6 +5298,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -5119,20 +5317,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5140,11 +5338,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:14 GMT + - Sat, 16 Jan 2021 17:02:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5153,6 +5351,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -5170,20 +5370,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5191,11 +5391,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:15 GMT + - Sat, 16 Jan 2021 17:02:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5204,6 +5404,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -5221,20 +5423,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5242,11 +5444,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:17 GMT + - Sat, 16 Jan 2021 17:02:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5255,6 +5457,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -5272,20 +5476,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5293,11 +5497,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:18 GMT + - Sat, 16 Jan 2021 17:02:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5306,6 +5510,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -5323,20 +5529,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5344,11 +5550,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:19 GMT + - Sat, 16 Jan 2021 17:02:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5357,6 +5563,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -5374,20 +5582,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5395,11 +5603,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:21 GMT + - Sat, 16 Jan 2021 17:02:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5408,6 +5616,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' x-powered-by: - ASP.NET status: @@ -5425,20 +5635,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5446,11 +5656,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:22 GMT + - Sat, 16 Jan 2021 17:02:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5459,6 +5669,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -5476,20 +5688,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5497,11 +5709,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:23 GMT + - Sat, 16 Jan 2021 17:02:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5510,6 +5722,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -5527,20 +5741,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5548,11 +5762,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:25 GMT + - Sat, 16 Jan 2021 17:02:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5561,6 +5775,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -5578,20 +5794,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5599,11 +5815,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:27 GMT + - Sat, 16 Jan 2021 17:02:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5612,6 +5828,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -5629,20 +5847,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5650,11 +5868,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:28 GMT + - Sat, 16 Jan 2021 17:02:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -5663,6 +5881,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -5680,45 +5900,47 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:30 GMT + - Sat, 16 Jan 2021 17:02:25 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '40' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5727,49 +5949,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1171' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:30 GMT + - Sat, 16 Jan 2021 17:02:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '39' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5778,49 +6002,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container register Connection: - keep-alive ParameterSetName: - - -n -v -g -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:30 GMT + - Sat, 16 Jan 2021 17:02:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '38' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5829,49 +6055,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container register Connection: - keep-alive ParameterSetName: - - -n -v -g -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:31 GMT + - Sat, 16 Jan 2021 17:02:29 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '37' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5880,49 +6108,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1171' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:32 GMT + - Sat, 16 Jan 2021 17:02:30 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '36' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5931,81 +6161,77 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1171' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:32 GMT + - Sat, 16 Jan 2021 17:02:31 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-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: + - '35' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": - "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", - "workloadType": "SQLDataBase", "operationType": "Reregister"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive - Content-Length: - - '320' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6013,11 +6239,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:32 GMT + - Sat, 16 Jan 2021 17:02:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6026,8 +6252,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -6041,24 +6267,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6066,11 +6292,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:34 GMT + - Sat, 16 Jan 2021 17:02:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6079,6 +6305,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -6092,24 +6320,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6117,11 +6345,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:35 GMT + - Sat, 16 Jan 2021 17:02:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6130,6 +6358,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -6143,24 +6373,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6168,11 +6398,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:36 GMT + - Sat, 16 Jan 2021 17:02:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6181,6 +6411,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -6194,24 +6426,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6219,11 +6451,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:38 GMT + - Sat, 16 Jan 2021 17:02:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6232,6 +6464,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -6245,24 +6479,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6270,11 +6504,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:39 GMT + - Sat, 16 Jan 2021 17:02:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6283,6 +6517,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -6296,24 +6532,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6321,11 +6557,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:41 GMT + - Sat, 16 Jan 2021 17:02:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6334,6 +6570,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -6347,24 +6585,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6372,11 +6610,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:42 GMT + - Sat, 16 Jan 2021 17:02:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6385,6 +6623,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -6398,24 +6638,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6423,11 +6663,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:44 GMT + - Sat, 16 Jan 2021 17:02:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6436,6 +6676,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -6449,24 +6691,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6474,11 +6716,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:45 GMT + - Sat, 16 Jan 2021 17:02:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6487,6 +6729,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -6500,24 +6744,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6525,11 +6769,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:46 GMT + - Sat, 16 Jan 2021 17:02:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6538,6 +6782,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' x-powered-by: - ASP.NET status: @@ -6551,24 +6797,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6576,11 +6822,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:47 GMT + - Sat, 16 Jan 2021 17:02:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6589,6 +6835,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -6602,24 +6850,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6627,11 +6875,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:49 GMT + - Sat, 16 Jan 2021 17:02:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6640,6 +6888,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' x-powered-by: - ASP.NET status: @@ -6653,24 +6903,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6678,11 +6928,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:51 GMT + - Sat, 16 Jan 2021 17:02:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6691,6 +6941,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -6704,24 +6956,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6729,11 +6981,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:52 GMT + - Sat, 16 Jan 2021 17:02:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6742,6 +6994,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '20' x-powered-by: - ASP.NET status: @@ -6755,24 +7009,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6780,11 +7034,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:53 GMT + - Sat, 16 Jan 2021 17:02:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6793,6 +7047,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -6806,24 +7062,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6831,11 +7087,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:54 GMT + - Sat, 16 Jan 2021 17:02:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6844,6 +7100,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '18' x-powered-by: - ASP.NET status: @@ -6857,24 +7115,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6882,11 +7140,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:57 GMT + - Sat, 16 Jan 2021 17:02:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6895,6 +7153,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '17' x-powered-by: - ASP.NET status: @@ -6908,24 +7168,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6933,11 +7193,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:58 GMT + - Sat, 16 Jan 2021 17:02:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6946,6 +7206,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '16' x-powered-by: - ASP.NET status: @@ -6959,24 +7221,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6984,11 +7246,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:02:59 GMT + - Sat, 16 Jan 2021 17:02:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -6997,6 +7259,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '15' x-powered-by: - ASP.NET status: @@ -7010,24 +7274,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7035,11 +7299,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:01 GMT + - Sat, 16 Jan 2021 17:02:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7048,6 +7312,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '14' x-powered-by: - ASP.NET status: @@ -7061,24 +7327,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7086,11 +7352,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:01 GMT + - Sat, 16 Jan 2021 17:02:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7099,6 +7365,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '13' x-powered-by: - ASP.NET status: @@ -7112,24 +7380,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7137,11 +7405,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:03 GMT + - Sat, 16 Jan 2021 17:03:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7150,6 +7418,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '12' x-powered-by: - ASP.NET status: @@ -7163,24 +7433,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7188,11 +7458,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:05 GMT + - Sat, 16 Jan 2021 17:03:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7201,6 +7471,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11' x-powered-by: - ASP.NET status: @@ -7214,24 +7486,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7239,11 +7511,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:06 GMT + - Sat, 16 Jan 2021 17:03:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7252,6 +7524,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '10' x-powered-by: - ASP.NET status: @@ -7265,24 +7539,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7290,11 +7564,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:08 GMT + - Sat, 16 Jan 2021 17:03:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7303,6 +7577,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' x-powered-by: - ASP.NET status: @@ -7316,24 +7592,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7341,11 +7617,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:08 GMT + - Sat, 16 Jan 2021 17:03:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7354,6 +7630,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '8' x-powered-by: - ASP.NET status: @@ -7367,24 +7645,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7392,11 +7670,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:10 GMT + - Sat, 16 Jan 2021 17:03:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7405,6 +7683,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '7' x-powered-by: - ASP.NET status: @@ -7418,24 +7698,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7443,11 +7723,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:11 GMT + - Sat, 16 Jan 2021 17:03:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7456,6 +7736,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '6' x-powered-by: - ASP.NET status: @@ -7469,24 +7751,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7494,11 +7776,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:13 GMT + - Sat, 16 Jan 2021 17:03:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7507,6 +7789,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '5' x-powered-by: - ASP.NET status: @@ -7520,24 +7804,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7545,11 +7829,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:16 GMT + - Sat, 16 Jan 2021 17:03:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7558,6 +7842,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4' x-powered-by: - ASP.NET status: @@ -7571,24 +7857,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7596,11 +7882,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:18 GMT + - Sat, 16 Jan 2021 17:03:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7609,6 +7895,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '3' x-powered-by: - ASP.NET status: @@ -7622,24 +7910,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7647,11 +7935,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:19 GMT + - Sat, 16 Jan 2021 17:03:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7660,6 +7948,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '2' x-powered-by: - ASP.NET status: @@ -7673,24 +7963,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7698,11 +7988,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:20 GMT + - Sat, 16 Jan 2021 17:03:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7711,6 +8001,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1' x-powered-by: - ASP.NET status: @@ -7724,24 +8016,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7749,11 +8041,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:22 GMT + - Sat, 16 Jan 2021 17:03:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7762,6 +8054,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '0' x-powered-by: - ASP.NET status: @@ -7775,24 +8069,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7800,11 +8094,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:23 GMT + - Sat, 16 Jan 2021 17:03:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 pragma: - no-cache server: @@ -7813,6 +8107,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '-1' x-powered-by: - ASP.NET status: @@ -7826,49 +8122,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container register Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1081' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:24 GMT + - Sat, 16 Jan 2021 17:08:42 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7877,49 +8175,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '4879' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:25 GMT + - Sat, 16 Jan 2021 17:08:43 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7928,49 +8244,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -n -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1159' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:27 GMT + - Sat, 16 Jan 2021 17:08:43 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -7979,49 +8297,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -n -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1159' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:28 GMT + - Sat, 16 Jan 2021 17:08:43 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8030,49 +8350,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '4879' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:30 GMT + - Sat, 16 Jan 2021 17:08:44 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8085,47 +8423,67 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '4879' content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:31 GMT + - Sat, 16 Jan 2021 17:08:45 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-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-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "workloadType": "SQLDataBase", "operationType": "Reregister"}}' headers: Accept: - application/json @@ -8135,21 +8493,25 @@ interactions: - backup container re-register Connection: - keep-alive + Content-Length: + - '320' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8157,11 +8519,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:32 GMT + - Sat, 16 Jan 2021 17:08:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8170,6 +8532,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -8187,20 +8551,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8208,11 +8572,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:33 GMT + - Sat, 16 Jan 2021 17:08:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8221,6 +8585,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -8238,20 +8604,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8259,11 +8625,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:35 GMT + - Sat, 16 Jan 2021 17:08:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8272,6 +8638,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -8289,20 +8657,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8310,11 +8678,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:36 GMT + - Sat, 16 Jan 2021 17:08:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8323,6 +8691,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -8340,20 +8710,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8361,11 +8731,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:38 GMT + - Sat, 16 Jan 2021 17:08:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8374,6 +8744,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -8391,20 +8763,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8412,11 +8784,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:39 GMT + - Sat, 16 Jan 2021 17:08:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8425,6 +8797,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -8442,20 +8816,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8463,11 +8837,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:40 GMT + - Sat, 16 Jan 2021 17:08:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8476,6 +8850,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -8493,20 +8869,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8514,11 +8890,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:42 GMT + - Sat, 16 Jan 2021 17:08:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8527,6 +8903,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -8544,20 +8922,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8565,11 +8943,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:44 GMT + - Sat, 16 Jan 2021 17:08:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8578,6 +8956,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' x-powered-by: - ASP.NET status: @@ -8595,20 +8975,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8616,11 +8996,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:44 GMT + - Sat, 16 Jan 2021 17:08:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8629,6 +9009,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: @@ -8646,20 +9028,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8667,11 +9049,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:46 GMT + - Sat, 16 Jan 2021 17:08:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8680,6 +9062,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' x-powered-by: - ASP.NET status: @@ -8697,20 +9081,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8718,11 +9102,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:48 GMT + - Sat, 16 Jan 2021 17:09:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8731,6 +9115,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '47' x-powered-by: - ASP.NET status: @@ -8748,20 +9134,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8769,11 +9155,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:49 GMT + - Sat, 16 Jan 2021 17:09:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8782,6 +9168,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' x-powered-by: - ASP.NET status: @@ -8799,20 +9187,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8820,11 +9208,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:51 GMT + - Sat, 16 Jan 2021 17:09:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8833,6 +9221,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '45' x-powered-by: - ASP.NET status: @@ -8850,20 +9240,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8871,11 +9261,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:52 GMT + - Sat, 16 Jan 2021 17:09:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8884,6 +9274,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' x-powered-by: - ASP.NET status: @@ -8901,20 +9293,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8922,11 +9314,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:53 GMT + - Sat, 16 Jan 2021 17:09:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8935,6 +9327,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '43' x-powered-by: - ASP.NET status: @@ -8952,20 +9346,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8973,11 +9367,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:55 GMT + - Sat, 16 Jan 2021 17:09:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -8986,6 +9380,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' x-powered-by: - ASP.NET status: @@ -9003,20 +9399,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9024,11 +9420,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:56 GMT + - Sat, 16 Jan 2021 17:09:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9037,6 +9433,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '41' x-powered-by: - ASP.NET status: @@ -9054,20 +9452,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9075,11 +9473,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:58 GMT + - Sat, 16 Jan 2021 17:09:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9088,6 +9486,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '40' x-powered-by: - ASP.NET status: @@ -9105,20 +9505,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9126,11 +9526,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:03:59 GMT + - Sat, 16 Jan 2021 17:09:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9139,6 +9539,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '39' x-powered-by: - ASP.NET status: @@ -9156,20 +9558,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9177,11 +9579,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:00 GMT + - Sat, 16 Jan 2021 17:09:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9190,6 +9592,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' x-powered-by: - ASP.NET status: @@ -9207,20 +9611,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9228,11 +9632,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:02 GMT + - Sat, 16 Jan 2021 17:09:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9241,6 +9645,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '37' x-powered-by: - ASP.NET status: @@ -9258,20 +9664,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9279,11 +9685,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:03 GMT + - Sat, 16 Jan 2021 17:09:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9292,6 +9698,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '36' x-powered-by: - ASP.NET status: @@ -9309,20 +9717,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9330,11 +9738,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:05 GMT + - Sat, 16 Jan 2021 17:09:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9343,6 +9751,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '35' x-powered-by: - ASP.NET status: @@ -9360,20 +9770,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9381,11 +9791,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:06 GMT + - Sat, 16 Jan 2021 17:09:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9394,6 +9804,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '34' x-powered-by: - ASP.NET status: @@ -9411,20 +9823,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9432,11 +9844,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:07 GMT + - Sat, 16 Jan 2021 17:09:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9445,6 +9857,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '33' x-powered-by: - ASP.NET status: @@ -9462,20 +9876,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9483,11 +9897,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:08 GMT + - Sat, 16 Jan 2021 17:09:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9496,6 +9910,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '32' x-powered-by: - ASP.NET status: @@ -9513,20 +9929,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9534,11 +9950,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:10 GMT + - Sat, 16 Jan 2021 17:09:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9547,6 +9963,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '31' x-powered-by: - ASP.NET status: @@ -9564,20 +9982,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9585,11 +10003,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:11 GMT + - Sat, 16 Jan 2021 17:09:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9598,6 +10016,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '30' x-powered-by: - ASP.NET status: @@ -9615,20 +10035,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9636,11 +10056,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:13 GMT + - Sat, 16 Jan 2021 17:09:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9649,6 +10069,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '29' x-powered-by: - ASP.NET status: @@ -9666,20 +10088,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9687,11 +10109,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:15 GMT + - Sat, 16 Jan 2021 17:09:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9700,6 +10122,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '28' x-powered-by: - ASP.NET status: @@ -9717,20 +10141,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9738,11 +10162,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:16 GMT + - Sat, 16 Jan 2021 17:09:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9751,6 +10175,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '27' x-powered-by: - ASP.NET status: @@ -9768,20 +10194,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9789,11 +10215,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:17 GMT + - Sat, 16 Jan 2021 17:09:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9802,6 +10228,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '26' x-powered-by: - ASP.NET status: @@ -9819,20 +10247,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9840,11 +10268,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:18 GMT + - Sat, 16 Jan 2021 17:09:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9853,6 +10281,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '25' x-powered-by: - ASP.NET status: @@ -9870,20 +10300,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9891,11 +10321,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:20 GMT + - Sat, 16 Jan 2021 17:09:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9904,6 +10334,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' x-powered-by: - ASP.NET status: @@ -9921,20 +10353,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9942,11 +10374,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:21 GMT + - Sat, 16 Jan 2021 17:09:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -9955,6 +10387,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '23' x-powered-by: - ASP.NET status: @@ -9972,20 +10406,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9993,11 +10427,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:22 GMT + - Sat, 16 Jan 2021 17:09:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10006,6 +10440,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '22' x-powered-by: - ASP.NET status: @@ -10023,20 +10459,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10044,11 +10480,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:24 GMT + - Sat, 16 Jan 2021 17:09:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10057,6 +10493,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '21' x-powered-by: - ASP.NET status: @@ -10074,20 +10512,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10095,11 +10533,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:25 GMT + - Sat, 16 Jan 2021 17:09:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10108,6 +10546,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '20' x-powered-by: - ASP.NET status: @@ -10125,20 +10565,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10146,11 +10586,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:26 GMT + - Sat, 16 Jan 2021 17:09:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10159,6 +10599,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '19' x-powered-by: - ASP.NET status: @@ -10176,20 +10618,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10197,11 +10639,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:28 GMT + - Sat, 16 Jan 2021 17:09:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10210,6 +10652,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '18' x-powered-by: - ASP.NET status: @@ -10227,20 +10671,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10248,11 +10692,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:29 GMT + - Sat, 16 Jan 2021 17:09:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10261,6 +10705,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '17' x-powered-by: - ASP.NET status: @@ -10278,20 +10724,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10299,11 +10745,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:30 GMT + - Sat, 16 Jan 2021 17:09:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10312,6 +10758,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '16' x-powered-by: - ASP.NET status: @@ -10329,20 +10777,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10350,11 +10798,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:32 GMT + - Sat, 16 Jan 2021 17:09:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10363,6 +10811,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '15' x-powered-by: - ASP.NET status: @@ -10380,20 +10830,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10401,11 +10851,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:33 GMT + - Sat, 16 Jan 2021 17:09:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10414,6 +10864,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '14' x-powered-by: - ASP.NET status: @@ -10431,20 +10883,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10452,11 +10904,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:34 GMT + - Sat, 16 Jan 2021 17:09:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10465,6 +10917,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '13' x-powered-by: - ASP.NET status: @@ -10482,20 +10936,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10503,11 +10957,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:36 GMT + - Sat, 16 Jan 2021 17:09:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10516,6 +10970,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '12' x-powered-by: - ASP.NET status: @@ -10533,20 +10989,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10554,11 +11010,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:37 GMT + - Sat, 16 Jan 2021 17:09:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10567,6 +11023,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11' x-powered-by: - ASP.NET status: @@ -10584,20 +11042,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10605,11 +11063,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:39 GMT + - Sat, 16 Jan 2021 17:09:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10618,6 +11076,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '10' x-powered-by: - ASP.NET status: @@ -10635,20 +11095,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10656,11 +11116,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:39 GMT + - Sat, 16 Jan 2021 17:09:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10669,6 +11129,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '9' x-powered-by: - ASP.NET status: @@ -10686,20 +11148,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10707,11 +11169,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:42 GMT + - Sat, 16 Jan 2021 17:09:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10720,6 +11182,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '8' x-powered-by: - ASP.NET status: @@ -10737,20 +11201,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10758,11 +11222,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:42 GMT + - Sat, 16 Jan 2021 17:09:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10771,6 +11235,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '7' x-powered-by: - ASP.NET status: @@ -10788,20 +11254,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10809,11 +11275,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:44 GMT + - Sat, 16 Jan 2021 17:09:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -10822,6 +11288,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '6' x-powered-by: - ASP.NET status: @@ -10839,45 +11307,47 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -y -n + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:45 GMT + - Sat, 16 Jan 2021 17:09:53 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-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: + - '5' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10886,49 +11356,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1171' + - '2' content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:46 GMT + - Sat, 16 Jan 2021 17:09:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-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: + - '4' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10937,42 +11409,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Wed, 17 Jul 2019 09:04:46 GMT + - Sat, 16 Jan 2021 17:09:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-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: + - '3' x-powered-by: - ASP.NET status: @@ -10986,24 +11462,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11011,11 +11487,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:47 GMT + - Sat, 16 Jan 2021 17:09:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -11024,6 +11500,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '2' x-powered-by: - ASP.NET status: @@ -11037,24 +11515,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11062,11 +11540,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:49 GMT + - Sat, 16 Jan 2021 17:09:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -11075,6 +11553,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1' x-powered-by: - ASP.NET status: @@ -11088,24 +11568,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11113,11 +11593,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:50 GMT + - Sat, 16 Jan 2021 17:10:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -11126,6 +11606,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '0' x-powered-by: - ASP.NET status: @@ -11139,24 +11621,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11164,11 +11646,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:51 GMT + - Sat, 16 Jan 2021 17:10:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: @@ -11177,6 +11659,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '-1' x-powered-by: - ASP.NET status: @@ -11190,49 +11674,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1081' content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:53 GMT + - Sat, 16 Jan 2021 17:15:27 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-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: + - '108' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -11241,44 +11727,113 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '4879' content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:54 GMT + - Sat, 16 Jan 2021 17:15:28 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-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: + - '145' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 17:15:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?fabricName=Azure?api-version=2020-10-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: @@ -11296,20 +11851,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11317,11 +11872,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:56 GMT + - Sat, 16 Jan 2021 17:15:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11330,6 +11885,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -11347,20 +11904,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11368,11 +11925,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:57 GMT + - Sat, 16 Jan 2021 17:15:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11381,6 +11938,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -11398,20 +11957,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11419,11 +11978,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:04:58 GMT + - Sat, 16 Jan 2021 17:15:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11432,6 +11991,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -11449,20 +12010,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11470,11 +12031,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:00 GMT + - Sat, 16 Jan 2021 17:15:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11483,6 +12044,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -11500,20 +12063,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11521,11 +12084,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:01 GMT + - Sat, 16 Jan 2021 17:15:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11534,6 +12097,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -11551,20 +12116,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11572,11 +12137,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:03 GMT + - Sat, 16 Jan 2021 17:15:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11585,6 +12150,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -11602,20 +12169,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11623,11 +12190,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:04 GMT + - Sat, 16 Jan 2021 17:15:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11636,6 +12203,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -11653,20 +12222,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11674,11 +12243,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:05 GMT + - Sat, 16 Jan 2021 17:15:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11687,6 +12256,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -11704,20 +12275,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11725,11 +12296,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:07 GMT + - Sat, 16 Jan 2021 17:15:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11738,6 +12309,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -11755,20 +12328,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11776,11 +12349,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:08 GMT + - Sat, 16 Jan 2021 17:15:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11789,6 +12362,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -11806,20 +12381,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11827,11 +12402,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:10 GMT + - Sat, 16 Jan 2021 17:15:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11840,6 +12415,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -11857,20 +12434,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11878,11 +12455,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:11 GMT + - Sat, 16 Jan 2021 17:15:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11891,6 +12468,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -11908,20 +12487,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11929,11 +12508,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:12 GMT + - Sat, 16 Jan 2021 17:15:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11942,6 +12521,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -11959,20 +12540,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11980,11 +12561,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:14 GMT + - Sat, 16 Jan 2021 17:15:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -11993,6 +12574,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -12010,20 +12593,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12031,11 +12614,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:16 GMT + - Sat, 16 Jan 2021 17:15:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12044,6 +12627,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -12061,20 +12646,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12082,11 +12667,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:17 GMT + - Sat, 16 Jan 2021 17:15:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12095,6 +12680,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -12112,20 +12699,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12133,11 +12720,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:18 GMT + - Sat, 16 Jan 2021 17:15:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12146,6 +12733,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -12163,20 +12752,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12184,11 +12773,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:20 GMT + - Sat, 16 Jan 2021 17:15:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12197,6 +12786,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -12214,20 +12805,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12235,11 +12826,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:21 GMT + - Sat, 16 Jan 2021 17:15:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12248,6 +12839,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -12265,20 +12858,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12286,11 +12879,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:22 GMT + - Sat, 16 Jan 2021 17:15:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12299,6 +12892,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -12316,20 +12911,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12337,11 +12932,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:24 GMT + - Sat, 16 Jan 2021 17:15:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12350,6 +12945,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -12367,20 +12964,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12388,11 +12985,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:25 GMT + - Sat, 16 Jan 2021 17:15:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12401,6 +12998,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -12418,20 +13017,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12439,11 +13038,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:27 GMT + - Sat, 16 Jan 2021 17:15:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12452,6 +13051,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -12469,20 +13070,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12490,11 +13091,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:28 GMT + - Sat, 16 Jan 2021 17:15:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12503,6 +13104,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -12520,20 +13123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12541,11 +13144,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:29 GMT + - Sat, 16 Jan 2021 17:16:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12554,6 +13157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -12571,20 +13176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12592,11 +13197,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:32 GMT + - Sat, 16 Jan 2021 17:16:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12605,6 +13210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -12622,20 +13229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12643,11 +13250,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:33 GMT + - Sat, 16 Jan 2021 17:16:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12656,6 +13263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -12673,20 +13282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12694,11 +13303,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:34 GMT + - Sat, 16 Jan 2021 17:16:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12707,6 +13316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -12724,20 +13335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12745,11 +13356,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:36 GMT + - Sat, 16 Jan 2021 17:16:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12758,6 +13369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -12775,20 +13388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12796,11 +13409,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:37 GMT + - Sat, 16 Jan 2021 17:16:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12809,6 +13422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -12826,20 +13441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12847,11 +13462,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:39 GMT + - Sat, 16 Jan 2021 17:16:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12860,6 +13475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -12877,20 +13494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12898,11 +13515,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:40 GMT + - Sat, 16 Jan 2021 17:16:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12911,6 +13528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -12928,20 +13547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12949,11 +13568,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:41 GMT + - Sat, 16 Jan 2021 17:16:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -12962,6 +13581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -12979,20 +13600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13000,11 +13621,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:42 GMT + - Sat, 16 Jan 2021 17:16:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13013,6 +13634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -13030,20 +13653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13051,11 +13674,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:44 GMT + - Sat, 16 Jan 2021 17:16:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13064,6 +13687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -13081,20 +13706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13102,11 +13727,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:46 GMT + - Sat, 16 Jan 2021 17:16:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13115,6 +13740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -13132,20 +13759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13153,11 +13780,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:48 GMT + - Sat, 16 Jan 2021 17:16:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13166,6 +13793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -13183,20 +13812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13204,11 +13833,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:48 GMT + - Sat, 16 Jan 2021 17:16:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13217,6 +13846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -13234,20 +13865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13255,11 +13886,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:51 GMT + - Sat, 16 Jan 2021 17:16:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13268,6 +13899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -13285,20 +13918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13306,11 +13939,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:52 GMT + - Sat, 16 Jan 2021 17:16:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13319,6 +13952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -13336,20 +13971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13357,11 +13992,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:53 GMT + - Sat, 16 Jan 2021 17:16:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13370,6 +14005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -13387,20 +14024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13408,11 +14045,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:55 GMT + - Sat, 16 Jan 2021 17:16:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13421,6 +14058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -13438,20 +14077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13459,11 +14098,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:57 GMT + - Sat, 16 Jan 2021 17:16:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13472,6 +14111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -13489,20 +14130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13510,11 +14151,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:58 GMT + - Sat, 16 Jan 2021 17:16:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13523,6 +14164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -13540,20 +14183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13561,11 +14204,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:05:59 GMT + - Sat, 16 Jan 2021 17:16:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13574,6 +14217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -13591,20 +14236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13612,11 +14257,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:00 GMT + - Sat, 16 Jan 2021 17:16:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13625,6 +14270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -13642,20 +14289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13663,11 +14310,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:01 GMT + - Sat, 16 Jan 2021 17:16:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13676,6 +14323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -13693,20 +14342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13714,11 +14363,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:03 GMT + - Sat, 16 Jan 2021 17:16:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13727,6 +14376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -13744,20 +14395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13765,11 +14416,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:05 GMT + - Sat, 16 Jan 2021 17:16:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13778,6 +14429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -13795,20 +14448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13816,11 +14469,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:06 GMT + - Sat, 16 Jan 2021 17:16:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13829,6 +14482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -13846,20 +14501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13867,11 +14522,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:07 GMT + - Sat, 16 Jan 2021 17:16:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13880,6 +14535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -13897,20 +14554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13918,11 +14575,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:09 GMT + - Sat, 16 Jan 2021 17:16:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13931,6 +14588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -13948,20 +14607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13969,11 +14628,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:10 GMT + - Sat, 16 Jan 2021 17:16:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -13982,6 +14641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -13999,20 +14660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14020,11 +14681,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:12 GMT + - Sat, 16 Jan 2021 17:16:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14033,6 +14694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -14050,20 +14713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14071,11 +14734,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:13 GMT + - Sat, 16 Jan 2021 17:16:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14084,6 +14747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -14101,20 +14766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14122,11 +14787,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:15 GMT + - Sat, 16 Jan 2021 17:16:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14135,6 +14800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -14152,20 +14819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14173,11 +14840,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:16 GMT + - Sat, 16 Jan 2021 17:16:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14186,6 +14853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -14203,20 +14872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14224,11 +14893,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:17 GMT + - Sat, 16 Jan 2021 17:16:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14237,6 +14906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -14254,20 +14925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14275,11 +14946,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:19 GMT + - Sat, 16 Jan 2021 17:16:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14288,6 +14959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -14305,20 +14978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14326,11 +14999,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:20 GMT + - Sat, 16 Jan 2021 17:16:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14339,6 +15012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -14356,20 +15031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14377,11 +15052,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:22 GMT + - Sat, 16 Jan 2021 17:16:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14390,6 +15065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -14407,20 +15084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14428,11 +15105,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:23 GMT + - Sat, 16 Jan 2021 17:16:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14441,6 +15118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -14458,20 +15137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14479,11 +15158,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:24 GMT + - Sat, 16 Jan 2021 17:16:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14492,6 +15171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -14509,20 +15190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14530,11 +15211,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:26 GMT + - Sat, 16 Jan 2021 17:16:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14543,6 +15224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -14560,20 +15243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14581,11 +15264,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:28 GMT + - Sat, 16 Jan 2021 17:16:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14594,6 +15277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -14611,20 +15296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14632,11 +15317,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:29 GMT + - Sat, 16 Jan 2021 17:16:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14645,6 +15330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -14662,20 +15349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14683,11 +15370,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:30 GMT + - Sat, 16 Jan 2021 17:16:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14696,6 +15383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -14713,20 +15402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14734,11 +15423,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:32 GMT + - Sat, 16 Jan 2021 17:16:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14747,6 +15436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -14764,20 +15455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14785,11 +15476,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:33 GMT + - Sat, 16 Jan 2021 17:16:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14798,6 +15489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -14815,20 +15508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14836,11 +15529,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:34 GMT + - Sat, 16 Jan 2021 17:16:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14849,6 +15542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -14866,20 +15561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14887,11 +15582,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:36 GMT + - Sat, 16 Jan 2021 17:16:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14900,6 +15595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -14917,20 +15614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14938,11 +15635,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:37 GMT + - Sat, 16 Jan 2021 17:17:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -14951,6 +15648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -14968,20 +15667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14989,11 +15688,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:39 GMT + - Sat, 16 Jan 2021 17:17:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15002,6 +15701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -15019,20 +15720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15040,11 +15741,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:40 GMT + - Sat, 16 Jan 2021 17:17:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15053,6 +15754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -15070,20 +15773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15091,11 +15794,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:41 GMT + - Sat, 16 Jan 2021 17:17:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15104,6 +15807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -15121,20 +15826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15142,11 +15847,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:43 GMT + - Sat, 16 Jan 2021 17:17:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15155,6 +15860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -15172,20 +15879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15193,11 +15900,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:44 GMT + - Sat, 16 Jan 2021 17:17:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15206,6 +15913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -15223,20 +15932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15244,11 +15953,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:45 GMT + - Sat, 16 Jan 2021 17:17:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15257,6 +15966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -15274,20 +15985,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15295,11 +16006,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:47 GMT + - Sat, 16 Jan 2021 17:17:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15308,6 +16019,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -15325,20 +16038,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15346,11 +16059,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:48 GMT + - Sat, 16 Jan 2021 17:17:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15359,6 +16072,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -15376,20 +16091,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15397,11 +16112,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:50 GMT + - Sat, 16 Jan 2021 17:17:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15410,6 +16125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -15427,20 +16144,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15448,11 +16165,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:51 GMT + - Sat, 16 Jan 2021 17:17:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15461,6 +16178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -15478,20 +16197,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15499,11 +16218,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:53 GMT + - Sat, 16 Jan 2021 17:17:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15512,6 +16231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -15529,20 +16250,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15550,11 +16271,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:54 GMT + - Sat, 16 Jan 2021 17:17:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15563,6 +16284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -15580,20 +16303,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15601,11 +16324,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:55 GMT + - Sat, 16 Jan 2021 17:17:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15614,6 +16337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -15631,20 +16356,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15652,11 +16377,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:57 GMT + - Sat, 16 Jan 2021 17:17:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15665,6 +16390,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -15682,20 +16409,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15703,11 +16430,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:58 GMT + - Sat, 16 Jan 2021 17:17:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15716,6 +16443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -15733,20 +16462,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15754,11 +16483,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:06:59 GMT + - Sat, 16 Jan 2021 17:17:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15767,6 +16496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -15784,20 +16515,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15805,11 +16536,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:07:01 GMT + - Sat, 16 Jan 2021 17:17:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15818,6 +16549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -15835,20 +16568,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15856,11 +16589,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:07:02 GMT + - Sat, 16 Jan 2021 17:17:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15869,6 +16602,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -15886,20 +16621,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15907,11 +16642,11 @@ interactions: content-type: - application/json date: - - Wed, 17 Jul 2019 09:07:03 GMT + - Sat, 16 Jan 2021 17:17:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 pragma: - no-cache server: @@ -15920,6 +16655,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -15937,14 +16674,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 response: body: string: '' @@ -15954,7 +16691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Jul 2019 09:07:05 GMT + - Sat, 16 Jan 2021 17:17:26 GMT expires: - '-1' pragma: @@ -15963,6 +16700,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -15980,26 +16719,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3719' content-type: - application/json date: - - Wed, 17 Jul 2019 09:07:05 GMT + - Sat, 16 Jan 2021 17:17:27 GMT expires: - '-1' pragma: @@ -16014,6 +16769,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml index 6651749d85f..6d89f8f93fc 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml @@ -13,24 +13,54 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-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/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '1108' + - '10681' content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:49 GMT + - Tue, 12 Jan 2021 10:24:54 GMT expires: - '-1' pragma: @@ -45,6 +75,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -58,30 +90,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 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/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}}]}' + 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;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1560' + - '12895' content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:50 GMT + - Tue, 12 Jan 2021 10:24:55 GMT expires: - '-1' pragma: @@ -96,6 +132,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -113,17 +151,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' headers: cache-control: - no-cache @@ -132,7 +170,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:50 GMT + - Tue, 12 Jan 2021 10:24:55 GMT expires: - '-1' pragma: @@ -147,6 +185,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -154,7 +194,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' headers: Accept: @@ -170,30 +210,30 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - 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=2019-06-15 + 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=2020-10-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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-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/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 11:02:51 GMT + - Tue, 12 Jan 2021 10:24:57 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-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/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -219,17 +259,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -238,7 +278,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:51 GMT + - Tue, 12 Jan 2021 10:24:58 GMT expires: - '-1' pragma: @@ -253,6 +293,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -270,17 +312,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -289,7 +331,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:52 GMT + - Tue, 12 Jan 2021 10:24:59 GMT expires: - '-1' pragma: @@ -304,6 +346,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -321,17 +365,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -340,7 +384,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:54 GMT + - Tue, 12 Jan 2021 10:25:00 GMT expires: - '-1' pragma: @@ -355,6 +399,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -372,17 +418,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -391,7 +437,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:55 GMT + - Tue, 12 Jan 2021 10:25:02 GMT expires: - '-1' pragma: @@ -406,6 +452,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -423,17 +471,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -442,7 +490,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:57 GMT + - Tue, 12 Jan 2021 10:25:04 GMT expires: - '-1' pragma: @@ -457,6 +505,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -474,17 +524,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -493,7 +543,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:02:59 GMT + - Tue, 12 Jan 2021 10:25:05 GMT expires: - '-1' pragma: @@ -508,6 +558,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -525,17 +577,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -544,7 +596,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:00 GMT + - Tue, 12 Jan 2021 10:25:06 GMT expires: - '-1' pragma: @@ -559,6 +611,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -576,17 +630,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -595,7 +649,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:02 GMT + - Tue, 12 Jan 2021 10:25:07 GMT expires: - '-1' pragma: @@ -610,6 +664,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -627,17 +683,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -646,7 +702,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:03 GMT + - Tue, 12 Jan 2021 10:25:08 GMT expires: - '-1' pragma: @@ -661,6 +717,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -678,17 +736,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -697,7 +755,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:04 GMT + - Tue, 12 Jan 2021 10:25:09 GMT expires: - '-1' pragma: @@ -712,6 +770,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -729,17 +789,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -748,7 +808,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:06 GMT + - Tue, 12 Jan 2021 10:25:11 GMT expires: - '-1' pragma: @@ -763,6 +823,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -780,17 +842,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -799,7 +861,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:07 GMT + - Tue, 12 Jan 2021 10:25:12 GMT expires: - '-1' pragma: @@ -814,6 +876,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -831,17 +895,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -850,7 +914,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:09 GMT + - Tue, 12 Jan 2021 10:25:13 GMT expires: - '-1' pragma: @@ -865,6 +929,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -882,17 +948,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -901,7 +967,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:10 GMT + - Tue, 12 Jan 2021 10:25:14 GMT expires: - '-1' pragma: @@ -916,6 +982,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -933,17 +1001,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -952,7 +1020,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:11 GMT + - Tue, 12 Jan 2021 10:25:15 GMT expires: - '-1' pragma: @@ -967,6 +1035,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -984,17 +1054,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1003,7 +1073,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:13 GMT + - Tue, 12 Jan 2021 10:25:17 GMT expires: - '-1' pragma: @@ -1018,6 +1088,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -1035,17 +1107,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1054,7 +1126,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:14 GMT + - Tue, 12 Jan 2021 10:25:18 GMT expires: - '-1' pragma: @@ -1069,6 +1141,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -1086,17 +1160,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1105,7 +1179,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:15 GMT + - Tue, 12 Jan 2021 10:25:19 GMT expires: - '-1' pragma: @@ -1120,6 +1194,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1137,17 +1213,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1156,7 +1232,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:17 GMT + - Tue, 12 Jan 2021 10:25:21 GMT expires: - '-1' pragma: @@ -1171,6 +1247,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1188,17 +1266,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1207,7 +1285,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:18 GMT + - Tue, 12 Jan 2021 10:25:22 GMT expires: - '-1' pragma: @@ -1222,6 +1300,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1239,17 +1319,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1258,7 +1338,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:19 GMT + - Tue, 12 Jan 2021 10:25:23 GMT expires: - '-1' pragma: @@ -1273,6 +1353,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1290,17 +1372,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1309,7 +1391,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:20 GMT + - Tue, 12 Jan 2021 10:25:24 GMT expires: - '-1' pragma: @@ -1324,6 +1406,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1341,17 +1425,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1360,7 +1444,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:22 GMT + - Tue, 12 Jan 2021 10:25:25 GMT expires: - '-1' pragma: @@ -1375,6 +1459,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1392,17 +1478,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1411,7 +1497,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:23 GMT + - Tue, 12 Jan 2021 10:25:26 GMT expires: - '-1' pragma: @@ -1426,6 +1512,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1443,17 +1531,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1462,7 +1550,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:25 GMT + - Tue, 12 Jan 2021 10:25:27 GMT expires: - '-1' pragma: @@ -1477,6 +1565,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1494,17 +1584,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1513,7 +1603,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:26 GMT + - Tue, 12 Jan 2021 10:25:30 GMT expires: - '-1' pragma: @@ -1528,6 +1618,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1545,17 +1637,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1564,7 +1656,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:27 GMT + - Tue, 12 Jan 2021 10:25:31 GMT expires: - '-1' pragma: @@ -1579,6 +1671,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1596,17 +1690,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1615,7 +1709,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:28 GMT + - Tue, 12 Jan 2021 10:25:32 GMT expires: - '-1' pragma: @@ -1630,6 +1724,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1647,17 +1743,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1666,7 +1762,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:30 GMT + - Tue, 12 Jan 2021 10:25:33 GMT expires: - '-1' pragma: @@ -1681,6 +1777,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1698,17 +1796,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1717,7 +1815,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:31 GMT + - Tue, 12 Jan 2021 10:25:35 GMT expires: - '-1' pragma: @@ -1732,6 +1830,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1749,17 +1849,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1768,7 +1868,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:33 GMT + - Tue, 12 Jan 2021 10:25:36 GMT expires: - '-1' pragma: @@ -1783,6 +1883,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1800,17 +1902,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1819,7 +1921,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:33 GMT + - Tue, 12 Jan 2021 10:25:38 GMT expires: - '-1' pragma: @@ -1834,6 +1936,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1851,17 +1955,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1870,7 +1974,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:35 GMT + - Tue, 12 Jan 2021 10:25:39 GMT expires: - '-1' pragma: @@ -1885,6 +1989,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1902,17 +2008,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1921,7 +2027,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:37 GMT + - Tue, 12 Jan 2021 10:25:40 GMT expires: - '-1' pragma: @@ -1936,6 +2042,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1953,17 +2061,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1972,7 +2080,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:38 GMT + - Tue, 12 Jan 2021 10:25:41 GMT expires: - '-1' pragma: @@ -1987,6 +2095,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -2004,17 +2114,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2023,7 +2133,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:39 GMT + - Tue, 12 Jan 2021 10:25:43 GMT expires: - '-1' pragma: @@ -2038,6 +2148,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -2055,17 +2167,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2074,7 +2186,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:41 GMT + - Tue, 12 Jan 2021 10:25:44 GMT expires: - '-1' pragma: @@ -2089,6 +2201,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -2106,17 +2220,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2125,7 +2239,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:42 GMT + - Tue, 12 Jan 2021 10:25:45 GMT expires: - '-1' pragma: @@ -2140,6 +2254,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -2157,17 +2273,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2176,7 +2292,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:44 GMT + - Tue, 12 Jan 2021 10:25:46 GMT expires: - '-1' pragma: @@ -2191,6 +2307,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2208,17 +2326,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2227,7 +2345,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:46 GMT + - Tue, 12 Jan 2021 10:25:47 GMT expires: - '-1' pragma: @@ -2242,6 +2360,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2259,17 +2379,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2278,7 +2398,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:47 GMT + - Tue, 12 Jan 2021 10:25:48 GMT expires: - '-1' pragma: @@ -2293,6 +2413,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2310,17 +2432,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2329,7 +2451,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:48 GMT + - Tue, 12 Jan 2021 10:25:49 GMT expires: - '-1' pragma: @@ -2344,6 +2466,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2361,17 +2485,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2380,7 +2504,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:49 GMT + - Tue, 12 Jan 2021 10:25:51 GMT expires: - '-1' pragma: @@ -2395,6 +2519,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2412,17 +2538,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2431,7 +2557,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:50 GMT + - Tue, 12 Jan 2021 10:25:53 GMT expires: - '-1' pragma: @@ -2446,6 +2572,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2463,17 +2591,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2482,7 +2610,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:52 GMT + - Tue, 12 Jan 2021 10:25:54 GMT expires: - '-1' pragma: @@ -2497,6 +2625,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2514,17 +2644,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2533,7 +2663,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:54 GMT + - Tue, 12 Jan 2021 10:25:55 GMT expires: - '-1' pragma: @@ -2548,6 +2678,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2565,17 +2697,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2584,7 +2716,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:55 GMT + - Tue, 12 Jan 2021 10:25:56 GMT expires: - '-1' pragma: @@ -2599,6 +2731,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2616,17 +2750,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2635,7 +2769,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:56 GMT + - Tue, 12 Jan 2021 10:25:57 GMT expires: - '-1' pragma: @@ -2650,6 +2784,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2667,17 +2803,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2686,7 +2822,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:03:58 GMT + - Tue, 12 Jan 2021 10:25:58 GMT expires: - '-1' pragma: @@ -2701,6 +2837,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2718,17 +2856,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2737,7 +2875,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:00 GMT + - Tue, 12 Jan 2021 10:25:59 GMT expires: - '-1' pragma: @@ -2752,6 +2890,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2769,17 +2909,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2788,7 +2928,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:01 GMT + - Tue, 12 Jan 2021 10:26:00 GMT expires: - '-1' pragma: @@ -2803,6 +2943,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2820,17 +2962,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2839,7 +2981,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:02 GMT + - Tue, 12 Jan 2021 10:26:02 GMT expires: - '-1' pragma: @@ -2854,6 +2996,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2871,17 +3015,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2890,7 +3034,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:03 GMT + - Tue, 12 Jan 2021 10:26:03 GMT expires: - '-1' pragma: @@ -2905,6 +3049,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2922,17 +3068,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2941,7 +3087,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:05 GMT + - Tue, 12 Jan 2021 10:26:04 GMT expires: - '-1' pragma: @@ -2956,6 +3102,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2973,26 +3121,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"Succeeded","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"2019-10-10T11:02:51.4746456Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"94e88450-ebb5-4664-b2bd-3a41cdd15fea"}}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:06 GMT + - Tue, 12 Jan 2021 10:26:05 GMT expires: - '-1' pragma: @@ -3007,6 +3155,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -3024,34 +3174,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/94e88450-ebb5-4664-b2bd-3a41cdd15fea?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/94e88450-ebb5-4664-b2bd-3a41cdd15fea","name":"94e88450-ebb5-4664-b2bd-3a41cdd15fea","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.6082611S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"2019-10-10T11:04:06.0829067Z","activityId":"7ffe9a90-eb4d-11e9-879b-186024943d4f"}}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '726' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:06 GMT + - Tue, 12 Jan 2021 10:26: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: @@ -3060,6 +3208,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -3073,30 +3223,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1096' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:07 GMT + - Tue, 12 Jan 2021 10:26:09 GMT expires: - '-1' pragma: @@ -3111,6 +3261,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -3124,30 +3276,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1334' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:08 GMT + - Tue, 12 Jan 2021 10:26:10 GMT expires: - '-1' pragma: @@ -3162,6 +3314,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -3175,30 +3329,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"Succeeded","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"2021-01-12T10:24:57.2644904Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"97591b88-c379-45ed-a583-1403cfc1ceda"}}' headers: cache-control: - no-cache content-length: - - '1096' + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:09 GMT + - Tue, 12 Jan 2021 10:26:11 GMT expires: - '-1' pragma: @@ -3213,6 +3367,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3226,36 +3382,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97591b88-c379-45ed-a583-1403cfc1ceda?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97591b88-c379-45ed-a583-1403cfc1ceda","name":"97591b88-c379-45ed-a583-1403cfc1ceda","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.3099114S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"2021-01-12T10:26:10.5744018Z","activityId":"69bd6449-54c0-11eb-ba03-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '749' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:09 GMT + - Tue, 12 Jan 2021 10:26: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: @@ -3264,6 +3422,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3277,30 +3437,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + 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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '1096' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:10 GMT + - Tue, 12 Jan 2021 10:26:12 GMT expires: - '-1' pragma: @@ -3315,6 +3475,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3328,30 +3490,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + 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=2020-10-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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","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"}},{"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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","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"}}]}' + 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":"70369085971404","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"}}' headers: cache-control: - no-cache content-length: - - '3800' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:11 GMT + - Tue, 12 Jan 2021 10:26:13 GMT expires: - '-1' pragma: @@ -3366,6 +3528,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3379,30 +3543,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --workload-type + - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + 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?api-version=2020-10-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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","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"}},{"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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","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"}}]}' + 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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '3800' + - '1096' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:11 GMT + - Tue, 12 Jan 2021 10:26:14 GMT expires: - '-1' pragma: @@ -3417,6 +3581,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3430,30 +3596,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v --backup-management-type --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectedItems?api-version=2019-06-15&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + 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=2020-10-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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","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"}},{"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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","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"}}]}' + 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":"70369085971404","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"}}' headers: cache-control: - no-cache content-length: - - '3800' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:11 GMT + - Tue, 12 Jan 2021 10:26:15 GMT expires: - '-1' pragma: @@ -3468,6 +3634,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3481,30 +3649,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + 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":"70369085971404","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"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:12 GMT + - Tue, 12 Jan 2021 10:26:15 GMT expires: - '-1' pragma: @@ -3519,6 +3687,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3532,30 +3702,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":3}}' + 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","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":"70369085971404","protectedItemHealthStatus":"IRPending","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"}},{"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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","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"}}]}' headers: cache-control: - no-cache content-length: - - '1066' + - '4371' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:12 GMT + - Tue, 12 Jan 2021 10:26:17 GMT expires: - '-1' pragma: @@ -3570,73 +3746,72 @@ interactions: - 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": {"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", - "protectedItemType": "AzureVmWorkloadSQLDatabase", "friendlyName": "msdb", "serverName": - "sarathvm", "parentName": "MSSQLSERVER", "parentType": "AzureVmWorkloadSQLInstance", - "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": - "IRPending", "lastBackupErrorDetail": {"code": "Success", "message": ""}, "protectedItemDataSourceId": - "70370549673687", "protectedItemHealthStatus": "IRPending", "extendedInfo": - {"recoveryPointCount": 0, "policyState": "Consistent"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive - Content-Length: - - '975' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: PUT - 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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '' + 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","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":"70369085971404","protectedItemHealthStatus":"IRPending","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"}},{"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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","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"}}]}' 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '4371' + content-type: + - application/json date: - - Thu, 10 Oct 2019 11:04:13 GMT + - Tue, 12 Jan 2021 10:26:16 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-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: @@ -3645,30 +3820,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type + - -g -v --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + 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","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":"70369085971404","protectedItemHealthStatus":"IRPending","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"}},{"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;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","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"}},{"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;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","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"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '4371' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:14 GMT + - Tue, 12 Jan 2021 10:26:17 GMT expires: - '-1' pragma: @@ -3683,6 +3864,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3702,24 +3885,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-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?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + 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":"70369085971404","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"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:16 GMT + - Tue, 12 Jan 2021 10:26:18 GMT expires: - '-1' pragma: @@ -3734,6 +3917,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3753,24 +3938,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":3}}' headers: cache-control: - no-cache content-length: - - '188' + - '1066' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:17 GMT + - Tue, 12 Jan 2021 10:26:19 GMT expires: - '-1' pragma: @@ -3785,11 +3970,75 @@ interactions: - 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: '{"properties": {"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", + "protectedItemType": "AzureVmWorkloadSQLDatabase", "friendlyName": "msdb", "serverName": + "sarathvm", "parentName": "MSSQLSERVER", "parentType": "AzureVmWorkloadSQLInstance", + "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": + "IRPending", "lastBackupErrorDetail": {}, "protectedItemDataSourceId": "70369085971404", + "protectedItemHealthStatus": "IRPending", "extendedInfo": {"recoveryPointCount": + 0, "policyState": "Consistent"}, "kpisHealths": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + Content-Length: + - '962' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: PUT + 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=2020-10-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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 12 Jan 2021 10:26:20 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-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: @@ -3804,24 +4053,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:19 GMT + - Tue, 12 Jan 2021 10:26:20 GMT expires: - '-1' pragma: @@ -3836,6 +4085,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3855,24 +4106,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:21 GMT + - Tue, 12 Jan 2021 10:26:21 GMT expires: - '-1' pragma: @@ -3887,6 +4138,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3906,24 +4159,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:22 GMT + - Tue, 12 Jan 2021 10:26:23 GMT expires: - '-1' pragma: @@ -3938,6 +4191,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3957,24 +4212,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:23 GMT + - Tue, 12 Jan 2021 10:26:24 GMT expires: - '-1' pragma: @@ -3989,6 +4244,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -4008,24 +4265,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:24 GMT + - Tue, 12 Jan 2021 10:26:25 GMT expires: - '-1' pragma: @@ -4040,6 +4297,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -4059,24 +4318,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:26 GMT + - Tue, 12 Jan 2021 10:26:26 GMT expires: - '-1' pragma: @@ -4091,6 +4350,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -4110,24 +4371,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:27 GMT + - Tue, 12 Jan 2021 10:26:27 GMT expires: - '-1' pragma: @@ -4142,6 +4403,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -4161,24 +4424,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:29 GMT + - Tue, 12 Jan 2021 10:26:29 GMT expires: - '-1' pragma: @@ -4193,6 +4456,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -4212,24 +4477,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:30 GMT + - Tue, 12 Jan 2021 10:26:30 GMT expires: - '-1' pragma: @@ -4244,6 +4509,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -4263,24 +4530,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:31 GMT + - Tue, 12 Jan 2021 10:26:32 GMT expires: - '-1' pragma: @@ -4295,6 +4562,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -4314,24 +4583,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:32 GMT + - Tue, 12 Jan 2021 10:26:33 GMT expires: - '-1' pragma: @@ -4346,6 +4615,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -4365,24 +4636,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:34 GMT + - Tue, 12 Jan 2021 10:26:34 GMT expires: - '-1' pragma: @@ -4397,6 +4668,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4416,24 +4689,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:35 GMT + - Tue, 12 Jan 2021 10:26:35 GMT expires: - '-1' pragma: @@ -4448,6 +4721,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -4467,24 +4742,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:37 GMT + - Tue, 12 Jan 2021 10:26:36 GMT expires: - '-1' pragma: @@ -4499,6 +4774,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -4518,24 +4795,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:39 GMT + - Tue, 12 Jan 2021 10:26:37 GMT expires: - '-1' pragma: @@ -4550,6 +4827,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4569,24 +4848,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:39 GMT + - Tue, 12 Jan 2021 10:26:39 GMT expires: - '-1' pragma: @@ -4601,6 +4880,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4620,24 +4901,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:41 GMT + - Tue, 12 Jan 2021 10:26:40 GMT expires: - '-1' pragma: @@ -4652,6 +4933,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -4671,24 +4954,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:42 GMT + - Tue, 12 Jan 2021 10:26:41 GMT expires: - '-1' pragma: @@ -4703,6 +4986,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -4722,24 +5007,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:43 GMT + - Tue, 12 Jan 2021 10:26:43 GMT expires: - '-1' pragma: @@ -4754,6 +5039,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -4773,24 +5060,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:44 GMT + - Tue, 12 Jan 2021 10:26:44 GMT expires: - '-1' pragma: @@ -4805,6 +5092,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -4824,24 +5113,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:46 GMT + - Tue, 12 Jan 2021 10:26:45 GMT expires: - '-1' pragma: @@ -4856,6 +5145,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -4875,24 +5166,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:47 GMT + - Tue, 12 Jan 2021 10:26:46 GMT expires: - '-1' pragma: @@ -4907,6 +5198,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -4926,24 +5219,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:49 GMT + - Tue, 12 Jan 2021 10:26:47 GMT expires: - '-1' pragma: @@ -4958,6 +5251,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -4977,24 +5272,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:50 GMT + - Tue, 12 Jan 2021 10:26:48 GMT expires: - '-1' pragma: @@ -5009,6 +5304,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -5028,24 +5325,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:51 GMT + - Tue, 12 Jan 2021 10:26:50 GMT expires: - '-1' pragma: @@ -5060,6 +5357,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -5079,24 +5378,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:53 GMT + - Tue, 12 Jan 2021 10:26:51 GMT expires: - '-1' pragma: @@ -5111,6 +5410,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -5130,24 +5431,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:55 GMT + - Tue, 12 Jan 2021 10:26:52 GMT expires: - '-1' pragma: @@ -5162,6 +5463,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -5181,24 +5484,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:56 GMT + - Tue, 12 Jan 2021 10:26:53 GMT expires: - '-1' pragma: @@ -5213,6 +5516,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -5232,24 +5537,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:57 GMT + - Tue, 12 Jan 2021 10:26:54 GMT expires: - '-1' pragma: @@ -5264,6 +5569,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -5283,24 +5590,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:04:58 GMT + - Tue, 12 Jan 2021 10:26:56 GMT expires: - '-1' pragma: @@ -5315,6 +5622,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -5334,24 +5643,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:00 GMT + - Tue, 12 Jan 2021 10:26:57 GMT expires: - '-1' pragma: @@ -5366,6 +5675,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -5385,24 +5696,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:02 GMT + - Tue, 12 Jan 2021 10:26:59 GMT expires: - '-1' pragma: @@ -5417,6 +5728,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -5436,24 +5749,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:02 GMT + - Tue, 12 Jan 2021 10:27:00 GMT expires: - '-1' pragma: @@ -5468,6 +5781,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -5487,24 +5802,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:04 GMT + - Tue, 12 Jan 2021 10:27:01 GMT expires: - '-1' pragma: @@ -5519,6 +5834,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -5538,24 +5855,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:05 GMT + - Tue, 12 Jan 2021 10:27:02 GMT expires: - '-1' pragma: @@ -5570,6 +5887,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -5589,24 +5908,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:07 GMT + - Tue, 12 Jan 2021 10:27:03 GMT expires: - '-1' pragma: @@ -5621,6 +5940,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -5640,24 +5961,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:08 GMT + - Tue, 12 Jan 2021 10:27:04 GMT expires: - '-1' pragma: @@ -5672,6 +5993,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -5691,24 +6014,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:10 GMT + - Tue, 12 Jan 2021 10:27:05 GMT expires: - '-1' pragma: @@ -5723,6 +6046,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -5742,24 +6067,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:11 GMT + - Tue, 12 Jan 2021 10:27:07 GMT expires: - '-1' pragma: @@ -5774,6 +6099,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -5793,24 +6120,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:13 GMT + - Tue, 12 Jan 2021 10:27:08 GMT expires: - '-1' pragma: @@ -5825,6 +6152,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -5844,24 +6173,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:14 GMT + - Tue, 12 Jan 2021 10:27:09 GMT expires: - '-1' pragma: @@ -5876,6 +6205,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -5895,24 +6226,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:15 GMT + - Tue, 12 Jan 2021 10:27:10 GMT expires: - '-1' pragma: @@ -5927,6 +6258,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -5946,24 +6279,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:17 GMT + - Tue, 12 Jan 2021 10:27:11 GMT expires: - '-1' pragma: @@ -5978,6 +6311,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -5997,24 +6332,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:18 GMT + - Tue, 12 Jan 2021 10:27:14 GMT expires: - '-1' pragma: @@ -6029,6 +6364,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -6048,24 +6385,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:19 GMT + - Tue, 12 Jan 2021 10:27:15 GMT expires: - '-1' pragma: @@ -6080,6 +6417,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -6099,24 +6438,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:21 GMT + - Tue, 12 Jan 2021 10:27:16 GMT expires: - '-1' pragma: @@ -6131,6 +6470,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -6150,24 +6491,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:22 GMT + - Tue, 12 Jan 2021 10:27:17 GMT expires: - '-1' pragma: @@ -6182,6 +6523,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -6201,24 +6544,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:23 GMT + - Tue, 12 Jan 2021 10:27:18 GMT expires: - '-1' pragma: @@ -6233,6 +6576,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -6252,24 +6597,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:26 GMT + - Tue, 12 Jan 2021 10:27:19 GMT expires: - '-1' pragma: @@ -6284,6 +6629,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -6303,24 +6650,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"Succeeded","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"2019-10-10T11:04:14.4120128Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"16bb1420-9268-45c3-8d3d-72138bb3502e"}}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:27 GMT + - Tue, 12 Jan 2021 10:27:20 GMT expires: - '-1' pragma: @@ -6335,6 +6682,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -6354,32 +6703,30 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/16bb1420-9268-45c3-8d3d-72138bb3502e?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/16bb1420-9268-45c3-8d3d-72138bb3502e","name":"16bb1420-9268-45c3-8d3d-72138bb3502e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M12.249799S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"2019-10-10T11:05:26.6618118Z","activityId":"b112f552-eb4d-11e9-af03-186024943d4f"}}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '725' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:27 GMT + - Tue, 12 Jan 2021 10:27: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: @@ -6388,6 +6735,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -6401,33 +6750,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T11:03:19.1525472Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1582' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:28 GMT + - Tue, 12 Jan 2021 10:27:22 GMT expires: - '-1' pragma: @@ -6442,6 +6788,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -6455,33 +6803,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T11:03:19.1525472Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1582' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:29 GMT + - Tue, 12 Jan 2021 10:27:24 GMT expires: - '-1' pragma: @@ -6496,6 +6841,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -6509,49 +6856,687 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item set-policy Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: DELETE - 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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Thu, 10 Oct 2019 11:05:30 GMT + - Tue, 12 Jan 2021 10:27:26 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperationResults/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-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-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: + - '95' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: + - '94' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10: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: + - '93' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: + - '92' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: + - '91' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + response: + body: + string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"Succeeded","startTime":"2021-01-12T10:26:20.400584Z","endTime":"2021-01-12T10:26:20.400584Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d2051f27-4696-4b6b-b4c6-380876cad8c2"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: + - '90' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/d2051f27-4696-4b6b-b4c6-380876cad8c2?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/d2051f27-4696-4b6b-b4c6-380876cad8c2","name":"d2051f27-4696-4b6b-b4c6-380876cad8c2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.0094084S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T10:26:20.400584Z","endTime":"2021-01-12T10:27:33.4099924Z","activityId":"9b57590f-54c0-11eb-8c2e-c8f750f92764"}}' + headers: + cache-control: + - no-cache + content-length: + - '748' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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 +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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=2020-10-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":"70369085971404","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"}}' + headers: + cache-control: + - no-cache + content-length: + - '1376' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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 protection disable + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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=2020-10-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":"70369085971404","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"}}' + headers: + cache-control: + - no-cache + content-length: + - '1376' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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 protection disable + Connection: + - keep-alive + Content-Length: + - '0' + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: DELETE + 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=2020-10-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/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 12 Jan 2021 10:27:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-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: + - -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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + response: + body: + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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 protection disable + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + response: + body: + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 10:27: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: @@ -6566,15 +7551,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6583,7 +7568,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:30 GMT + - Tue, 12 Jan 2021 10:27:40 GMT expires: - '-1' pragma: @@ -6598,6 +7583,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -6617,15 +7604,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6634,7 +7621,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:31 GMT + - Tue, 12 Jan 2021 10:27:41 GMT expires: - '-1' pragma: @@ -6649,6 +7636,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -6668,15 +7657,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6685,7 +7674,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:33 GMT + - Tue, 12 Jan 2021 10:27:43 GMT expires: - '-1' pragma: @@ -6700,6 +7689,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6719,15 +7710,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6736,7 +7727,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:34 GMT + - Tue, 12 Jan 2021 10:27:44 GMT expires: - '-1' pragma: @@ -6751,6 +7742,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -6770,15 +7763,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6787,7 +7780,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:36 GMT + - Tue, 12 Jan 2021 10:27:45 GMT expires: - '-1' pragma: @@ -6802,6 +7795,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -6821,15 +7816,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6838,7 +7833,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:37 GMT + - Tue, 12 Jan 2021 10:27:46 GMT expires: - '-1' pragma: @@ -6853,6 +7848,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -6872,15 +7869,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6889,7 +7886,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:38 GMT + - Tue, 12 Jan 2021 10:27:47 GMT expires: - '-1' pragma: @@ -6904,6 +7901,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -6923,15 +7922,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6940,7 +7939,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:39 GMT + - Tue, 12 Jan 2021 10:27:48 GMT expires: - '-1' pragma: @@ -6955,6 +7954,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -6974,15 +7975,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6991,7 +7992,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:40 GMT + - Tue, 12 Jan 2021 10:27:50 GMT expires: - '-1' pragma: @@ -7006,6 +8007,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -7025,15 +8028,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7042,7 +8045,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:42 GMT + - Tue, 12 Jan 2021 10:27:52 GMT expires: - '-1' pragma: @@ -7057,6 +8060,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -7076,15 +8081,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7093,7 +8098,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:43 GMT + - Tue, 12 Jan 2021 10:27:53 GMT expires: - '-1' pragma: @@ -7108,6 +8113,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -7127,15 +8134,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7144,7 +8151,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:44 GMT + - Tue, 12 Jan 2021 10:27:54 GMT expires: - '-1' pragma: @@ -7159,6 +8166,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -7178,15 +8187,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7195,7 +8204,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:46 GMT + - Tue, 12 Jan 2021 10:27:55 GMT expires: - '-1' pragma: @@ -7210,6 +8219,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -7229,15 +8240,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7246,7 +8257,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:47 GMT + - Tue, 12 Jan 2021 10:27:56 GMT expires: - '-1' pragma: @@ -7261,6 +8272,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -7280,15 +8293,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7297,7 +8310,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:48 GMT + - Tue, 12 Jan 2021 10:27:57 GMT expires: - '-1' pragma: @@ -7312,6 +8325,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -7331,15 +8346,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7348,7 +8363,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:50 GMT + - Tue, 12 Jan 2021 10:27:59 GMT expires: - '-1' pragma: @@ -7363,6 +8378,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -7382,15 +8399,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7399,7 +8416,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:51 GMT + - Tue, 12 Jan 2021 10:28:00 GMT expires: - '-1' pragma: @@ -7414,6 +8431,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -7433,15 +8452,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7450,7 +8469,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:52 GMT + - Tue, 12 Jan 2021 10:28:01 GMT expires: - '-1' pragma: @@ -7465,6 +8484,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -7484,15 +8505,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7501,7 +8522,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:54 GMT + - Tue, 12 Jan 2021 10:28:02 GMT expires: - '-1' pragma: @@ -7516,6 +8537,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -7535,15 +8558,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7552,7 +8575,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:55 GMT + - Tue, 12 Jan 2021 10:28:03 GMT expires: - '-1' pragma: @@ -7567,6 +8590,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -7586,15 +8611,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7603,7 +8628,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:57 GMT + - Tue, 12 Jan 2021 10:28:04 GMT expires: - '-1' pragma: @@ -7618,6 +8643,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -7637,15 +8664,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7654,7 +8681,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:05:58 GMT + - Tue, 12 Jan 2021 10:28:06 GMT expires: - '-1' pragma: @@ -7669,6 +8696,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -7688,15 +8717,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7705,7 +8734,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:06:00 GMT + - Tue, 12 Jan 2021 10:28:08 GMT expires: - '-1' pragma: @@ -7720,6 +8749,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -7739,15 +8770,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7756,7 +8787,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:06:01 GMT + - Tue, 12 Jan 2021 10:28:09 GMT expires: - '-1' pragma: @@ -7771,6 +8802,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -7790,15 +8823,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 response: body: - string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"Succeeded","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"2019-10-10T11:05:30.2901502Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"da82a630-90ce-450c-bf4d-9fa689014f9d"}}' + string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"Succeeded","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"2021-01-12T10:27:37.3723232Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe85ff87-aaa0-4885-a37a-03dec312ac3c"}}' headers: cache-control: - no-cache @@ -7807,7 +8840,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 11:06:03 GMT + - Tue, 12 Jan 2021 10:28:10 GMT expires: - '-1' pragma: @@ -7822,6 +8855,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -7841,24 +8876,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/da82a630-90ce-450c-bf4d-9fa689014f9d?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/fe85ff87-aaa0-4885-a37a-03dec312ac3c?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/da82a630-90ce-450c-bf4d-9fa689014f9d","name":"da82a630-90ce-450c-bf4d-9fa689014f9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31.9373509S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"2019-10-10T11:06:02.2275011Z","activityId":"de74c4b4-eb4d-11e9-912d-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/fe85ff87-aaa0-4885-a37a-03dec312ac3c","name":"fe85ff87-aaa0-4885-a37a-03dec312ac3c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.4423536S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"2021-01-12T10:28:09.8146768Z","activityId":"c9750018-54c0-11eb-ba4d-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '694' + - '717' content-type: - application/json date: - - Thu, 10 Oct 2019 11:06:02 GMT + - Tue, 12 Jan 2021 10:28:11 GMT expires: - '-1' pragma: @@ -7874,6 +8909,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml index a7144287be1..d9241efc83f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:39:59 GMT + - Mon, 11 Jan 2021 12:29:09 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -78,12 +80,12 @@ interactions: ParameterSetName: - -g -v --policy --backup-management-type --workload-type --name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -95,7 +97,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:40:02 GMT + - Mon, 11 Jan 2021 12:29:09 GMT expires: - '-1' pragma: @@ -131,24 +133,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyricu3u3vop","name":"clitest-policyricu3u3vop","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '4037' + - '5130' content-type: - application/json date: - - Fri, 08 May 2020 06:40:05 GMT + - Mon, 11 Jan 2021 12:29:10 GMT expires: - '-1' pragma: @@ -163,6 +165,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -196,12 +200,12 @@ interactions: ParameterSetName: - -g -v --policy -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -213,7 +217,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:40:07 GMT + - Mon, 11 Jan 2021 12:29:11 GMT expires: - '-1' pragma: @@ -249,12 +253,12 @@ interactions: ParameterSetName: - -g -v --backup-management-type --fix-for-inconsistent-items -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -266,7 +270,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:40:10 GMT + - Mon, 11 Jan 2021 12:29:11 GMT expires: - '-1' pragma: @@ -281,6 +285,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -314,12 +320,12 @@ interactions: ParameterSetName: - -g -v --backup-management-type --fix-for-inconsistent-items -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -331,7 +337,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:40:12 GMT + - Mon, 11 Jan 2021 12:29:12 GMT expires: - '-1' pragma: @@ -347,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -367,12 +373,12 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' @@ -384,7 +390,7 @@ interactions: content-type: - application/json date: - - Fri, 08 May 2020 06:40:15 GMT + - Mon, 11 Jan 2021 12:29:12 GMT expires: - '-1' pragma: @@ -399,6 +405,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -420,12 +428,12 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '' @@ -435,7 +443,7 @@ interactions: content-length: - '0' date: - - Fri, 08 May 2020 06:40:17 GMT + - Mon, 11 Jan 2021 12:29:14 GMT expires: - '-1' pragma: @@ -465,24 +473,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.5.0 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyricu3u3vop","name":"clitest-policyricu3u3vop","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '2942' + - '4035' content-type: - application/json date: - - Fri, 08 May 2020 06:40:20 GMT + - Mon, 11 Jan 2021 12:29:15 GMT expires: - '-1' pragma: @@ -497,6 +505,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml index 2a12d6314ec..b8e8bc4b997 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml @@ -11,26 +11,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;deletethis43234","name":"VMAppContainer;Compute;shswain-rg;deletethis43234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"deletethis43234","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/deletethis43234"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsadsa","name":"VMAppContainer;Compute;shswain-rg;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsfsdfd","name":"VMAppContainer;Compute;shswain-rg;dsfsdfd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsfsdfd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsfsdfd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;shswain-sles-1","name":"VMAppContainer;Compute;shswain-rg;shswain-sles-1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-sles-1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/shswain-sles-1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmnpb2n","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxj2c5","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","name":"VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm757zh","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Compute/virtualMachines/clitest-vm757zh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","name":"VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxhsp4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw/providers/Microsoft.Compute/virtualMachines/clitest-vmxhsp4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","name":"VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmzyo75","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","name":"VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7oe3h","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h/providers/Microsoft.Compute/virtualMachines/clitest-vm7oe3h"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","name":"VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7pkgm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw/providers/Microsoft.Compute/virtualMachines/clitest-vm7pkgm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","name":"VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmpu4sw","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb/providers/Microsoft.Compute/virtualMachines/clitest-vmpu4sw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmjunig","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmvsxff","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmsruqi","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' headers: cache-control: - no-cache content-length: - - '13092' + - '20177' content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:52 GMT + - Sat, 16 Jan 2021 17:21:05 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -68,18 +70,20 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -87,11 +91,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:53 GMT + - Sat, 16 Jan 2021 17:21:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -119,18 +123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -138,11 +144,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:54 GMT + - Sat, 16 Jan 2021 17:21:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -151,6 +157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -168,18 +176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -187,11 +197,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:55 GMT + - Sat, 16 Jan 2021 17:21:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -200,6 +210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -217,18 +229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -236,11 +250,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:56 GMT + - Sat, 16 Jan 2021 17:21:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -249,6 +263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -266,18 +282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -285,11 +303,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:58 GMT + - Sat, 16 Jan 2021 17:21:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -298,6 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -315,18 +335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -334,11 +356,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:11:59 GMT + - Sat, 16 Jan 2021 17:21:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -347,6 +369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -364,18 +388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -383,11 +409,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:01 GMT + - Sat, 16 Jan 2021 17:21:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -396,6 +422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -413,18 +441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -432,11 +462,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:03 GMT + - Sat, 16 Jan 2021 17:21:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -445,6 +475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -462,18 +494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -481,11 +515,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:04 GMT + - Sat, 16 Jan 2021 17:21:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -494,6 +528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -511,18 +547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -530,11 +568,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:06 GMT + - Sat, 16 Jan 2021 17:21:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -543,6 +581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -560,18 +600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -579,11 +621,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:07 GMT + - Sat, 16 Jan 2021 17:21:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -592,6 +634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -609,18 +653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -628,11 +674,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:08 GMT + - Sat, 16 Jan 2021 17:21:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -641,6 +687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -658,18 +706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -677,11 +727,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:10 GMT + - Sat, 16 Jan 2021 17:21:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -690,6 +740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -707,18 +759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -726,11 +780,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:12 GMT + - Sat, 16 Jan 2021 17:21:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -739,6 +793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -756,18 +812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -775,11 +833,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:13 GMT + - Sat, 16 Jan 2021 17:21:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -788,6 +846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -805,18 +865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -824,11 +886,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:15 GMT + - Sat, 16 Jan 2021 17:21:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -837,6 +899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -854,18 +918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -873,11 +939,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:16 GMT + - Sat, 16 Jan 2021 17:21:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -886,6 +952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -903,18 +971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -922,11 +992,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:18 GMT + - Sat, 16 Jan 2021 17:21:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -935,6 +1005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -952,18 +1024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1045,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:20 GMT + - Sat, 16 Jan 2021 17:21:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -984,6 +1058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -1001,18 +1077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1020,11 +1098,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:21 GMT + - Sat, 16 Jan 2021 17:21:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1033,6 +1111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -1050,18 +1130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1069,11 +1151,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:22 GMT + - Sat, 16 Jan 2021 17:21:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1082,6 +1164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1099,18 +1183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1118,11 +1204,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:24 GMT + - Sat, 16 Jan 2021 17:21:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1131,6 +1217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1148,18 +1236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1167,11 +1257,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:25 GMT + - Sat, 16 Jan 2021 17:21:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1180,6 +1270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -1197,18 +1289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1216,11 +1310,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:26 GMT + - Sat, 16 Jan 2021 17:21:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1229,6 +1323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -1246,18 +1342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1265,11 +1363,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:28 GMT + - Sat, 16 Jan 2021 17:21:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1278,6 +1376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -1295,18 +1395,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1314,11 +1416,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:30 GMT + - Sat, 16 Jan 2021 17:21:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1327,6 +1429,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -1344,18 +1448,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1363,11 +1469,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:32 GMT + - Sat, 16 Jan 2021 17:21:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1376,6 +1482,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1393,18 +1501,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1412,11 +1522,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:33 GMT + - Sat, 16 Jan 2021 17:21:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1425,6 +1535,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1442,18 +1554,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1461,11 +1575,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:34 GMT + - Sat, 16 Jan 2021 17:21:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1474,6 +1588,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1491,18 +1607,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1510,11 +1628,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:36 GMT + - Sat, 16 Jan 2021 17:21:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1523,6 +1641,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1540,18 +1660,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1559,11 +1681,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:38 GMT + - Sat, 16 Jan 2021 17:21:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1572,6 +1694,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1589,18 +1713,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1608,11 +1734,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:39 GMT + - Sat, 16 Jan 2021 17:21:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1621,6 +1747,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1638,18 +1766,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1657,11 +1787,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:40 GMT + - Sat, 16 Jan 2021 17:21:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1670,6 +1800,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1687,18 +1819,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1706,11 +1840,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:42 GMT + - Sat, 16 Jan 2021 17:21:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1719,6 +1853,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1736,18 +1872,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1755,11 +1893,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:43 GMT + - Sat, 16 Jan 2021 17:21:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1768,6 +1906,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1785,18 +1925,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1804,11 +1946,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:45 GMT + - Sat, 16 Jan 2021 17:21:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1817,6 +1959,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1834,18 +1978,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1853,11 +1999,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:47 GMT + - Sat, 16 Jan 2021 17:21:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1866,6 +2012,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1883,18 +2031,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1902,11 +2052,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:48 GMT + - Sat, 16 Jan 2021 17:21:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1915,6 +2065,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1932,18 +2084,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1951,11 +2105,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:50 GMT + - Sat, 16 Jan 2021 17:21:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -1964,6 +2118,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -1981,18 +2137,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2000,11 +2158,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:51 GMT + - Sat, 16 Jan 2021 17:21:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2013,6 +2171,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2030,18 +2190,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2049,11 +2211,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:52 GMT + - Sat, 16 Jan 2021 17:21:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2062,6 +2224,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -2079,18 +2243,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2098,11 +2264,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:54 GMT + - Sat, 16 Jan 2021 17:21:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2111,6 +2277,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -2128,18 +2296,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2147,11 +2317,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:55 GMT + - Sat, 16 Jan 2021 17:21:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2160,6 +2330,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -2177,18 +2349,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2196,11 +2370,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:57 GMT + - Sat, 16 Jan 2021 17:22:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2209,6 +2383,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -2226,18 +2402,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2245,11 +2423,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:12:58 GMT + - Sat, 16 Jan 2021 17:22:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2258,6 +2436,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -2275,18 +2455,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2294,11 +2476,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:00 GMT + - Sat, 16 Jan 2021 17:22:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2307,6 +2489,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2324,18 +2508,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2343,11 +2529,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:02 GMT + - Sat, 16 Jan 2021 17:22:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2356,6 +2542,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2373,18 +2561,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2392,11 +2582,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:03 GMT + - Sat, 16 Jan 2021 17:22:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2405,6 +2595,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2422,18 +2614,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2441,11 +2635,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:05 GMT + - Sat, 16 Jan 2021 17:22:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2454,6 +2648,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2471,18 +2667,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2490,11 +2688,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:06 GMT + - Sat, 16 Jan 2021 17:22:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2503,6 +2701,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2520,18 +2720,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2539,11 +2741,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:08 GMT + - Sat, 16 Jan 2021 17:22:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2552,6 +2754,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2569,18 +2773,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2588,11 +2794,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:09 GMT + - Sat, 16 Jan 2021 17:22:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2601,6 +2807,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2618,18 +2826,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2637,11 +2847,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:10 GMT + - Sat, 16 Jan 2021 17:22:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2650,6 +2860,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2667,18 +2879,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2686,11 +2900,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:12 GMT + - Sat, 16 Jan 2021 17:22:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2699,6 +2913,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2716,18 +2932,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2735,11 +2953,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:14 GMT + - Sat, 16 Jan 2021 17:22:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2748,6 +2966,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2765,18 +2985,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2784,11 +3006,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:15 GMT + - Sat, 16 Jan 2021 17:22:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2797,6 +3019,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -2814,18 +3038,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2833,11 +3059,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:16 GMT + - Sat, 16 Jan 2021 17:22:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2846,6 +3072,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -2863,18 +3091,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2882,11 +3112,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:18 GMT + - Sat, 16 Jan 2021 17:22:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2895,6 +3125,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -2912,18 +3144,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2931,11 +3165,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:19 GMT + - Sat, 16 Jan 2021 17:22:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2944,6 +3178,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -2961,18 +3197,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2980,11 +3218,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:22 GMT + - Sat, 16 Jan 2021 17:22:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -2993,6 +3231,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -3010,18 +3250,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3029,11 +3271,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:23 GMT + - Sat, 16 Jan 2021 17:22:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3042,6 +3284,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -3059,18 +3303,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3078,11 +3324,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:25 GMT + - Sat, 16 Jan 2021 17:22:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3091,6 +3337,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -3108,18 +3356,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3127,11 +3377,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:26 GMT + - Sat, 16 Jan 2021 17:22:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3140,6 +3390,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -3157,18 +3409,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3176,11 +3430,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:28 GMT + - Sat, 16 Jan 2021 17:22:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3189,6 +3443,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -3206,18 +3462,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3225,11 +3483,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:29 GMT + - Sat, 16 Jan 2021 17:22:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3238,6 +3496,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -3255,18 +3515,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3274,11 +3536,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:30 GMT + - Sat, 16 Jan 2021 17:22:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3287,6 +3549,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -3304,18 +3568,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3323,11 +3589,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:32 GMT + - Sat, 16 Jan 2021 17:22:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3336,6 +3602,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -3353,18 +3621,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3372,11 +3642,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:33 GMT + - Sat, 16 Jan 2021 17:22:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3385,6 +3655,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -3402,18 +3674,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3421,11 +3695,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:36 GMT + - Sat, 16 Jan 2021 17:22:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3434,6 +3708,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -3451,18 +3727,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3470,11 +3748,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:37 GMT + - Sat, 16 Jan 2021 17:22:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3483,6 +3761,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -3500,18 +3780,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3519,11 +3801,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:39 GMT + - Sat, 16 Jan 2021 17:22:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3532,6 +3814,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -3549,18 +3833,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3568,11 +3854,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:40 GMT + - Sat, 16 Jan 2021 17:22:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3581,6 +3867,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -3598,18 +3886,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3617,11 +3907,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:42 GMT + - Sat, 16 Jan 2021 17:22:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3630,6 +3920,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -3647,18 +3939,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3666,11 +3960,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:43 GMT + - Sat, 16 Jan 2021 17:22:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3679,6 +3973,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -3696,18 +3992,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3715,11 +4013,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:45 GMT + - Sat, 16 Jan 2021 17:22:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3728,6 +4026,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -3745,18 +4045,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3764,11 +4066,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:46 GMT + - Sat, 16 Jan 2021 17:22:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3777,6 +4079,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -3794,18 +4098,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3813,11 +4119,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:48 GMT + - Sat, 16 Jan 2021 17:22:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3826,6 +4132,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -3843,18 +4151,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3862,11 +4172,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:49 GMT + - Sat, 16 Jan 2021 17:22:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3875,6 +4185,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -3892,18 +4204,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3911,11 +4225,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:51 GMT + - Sat, 16 Jan 2021 17:22:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3924,6 +4238,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -3941,18 +4257,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -3960,11 +4278,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:52 GMT + - Sat, 16 Jan 2021 17:22:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -3973,6 +4291,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -3990,18 +4310,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4009,11 +4331,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:54 GMT + - Sat, 16 Jan 2021 17:22:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4022,6 +4344,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -4039,18 +4363,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4058,11 +4384,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:55 GMT + - Sat, 16 Jan 2021 17:22:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4071,6 +4397,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -4088,18 +4416,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4107,11 +4437,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:57 GMT + - Sat, 16 Jan 2021 17:22:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4120,6 +4450,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -4137,18 +4469,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4156,11 +4490,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:13:59 GMT + - Sat, 16 Jan 2021 17:22:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4169,6 +4503,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -4186,18 +4522,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4205,11 +4543,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:00 GMT + - Sat, 16 Jan 2021 17:22:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4218,6 +4556,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -4235,18 +4575,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4254,11 +4596,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:02 GMT + - Sat, 16 Jan 2021 17:22:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4267,6 +4609,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -4284,18 +4628,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4303,11 +4649,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:04 GMT + - Sat, 16 Jan 2021 17:22:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4316,6 +4662,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -4333,18 +4681,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4352,11 +4702,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:05 GMT + - Sat, 16 Jan 2021 17:22:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4365,6 +4715,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -4382,18 +4734,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4401,11 +4755,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:06 GMT + - Sat, 16 Jan 2021 17:22:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4414,6 +4768,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -4431,18 +4787,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4450,11 +4808,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:07 GMT + - Sat, 16 Jan 2021 17:22:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4463,6 +4821,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -4480,18 +4840,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4499,11 +4861,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:09 GMT + - Sat, 16 Jan 2021 17:22:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4512,6 +4874,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -4529,18 +4893,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4548,11 +4914,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:10 GMT + - Sat, 16 Jan 2021 17:23:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4561,6 +4927,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -4578,18 +4946,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4597,11 +4967,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:12 GMT + - Sat, 16 Jan 2021 17:23:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4610,6 +4980,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -4627,18 +4999,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4646,11 +5020,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:13 GMT + - Sat, 16 Jan 2021 17:23:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4659,6 +5033,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -4676,18 +5052,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4695,11 +5073,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:15 GMT + - Sat, 16 Jan 2021 17:23:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4708,6 +5086,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -4725,18 +5105,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4744,11 +5126,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:16 GMT + - Sat, 16 Jan 2021 17:23:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4757,6 +5139,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '55' x-powered-by: - ASP.NET status: @@ -4774,18 +5158,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4793,11 +5179,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:17 GMT + - Sat, 16 Jan 2021 17:23:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4806,6 +5192,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' x-powered-by: - ASP.NET status: @@ -4823,18 +5211,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4842,11 +5232,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:19 GMT + - Sat, 16 Jan 2021 17:23:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4855,6 +5245,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '53' x-powered-by: - ASP.NET status: @@ -4872,18 +5264,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4891,11 +5285,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:21 GMT + - Sat, 16 Jan 2021 17:23:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4904,6 +5298,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' x-powered-by: - ASP.NET status: @@ -4921,18 +5317,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4940,11 +5338,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:23 GMT + - Sat, 16 Jan 2021 17:23:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: @@ -4953,6 +5351,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -4970,45 +5370,4309 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b -w -i + - -v -g --backup-management-type --workload-type --resource-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '50' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '49' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '48' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '47' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '46' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '45' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '44' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '43' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '42' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '41' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '40' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '39' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '38' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '37' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '36' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '35' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '34' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '33' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '32' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '31' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '30' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '29' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '28' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '27' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '26' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '25' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '24' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '23' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '22' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '21' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '20' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '19' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '18' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '17' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '16' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '15' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '14' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '13' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '12' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:23:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '11' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '10' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '9' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '8' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '7' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '6' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '5' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '4' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '3' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '2' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '1' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '0' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:24:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-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: + - '-1' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1081' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29: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: + - '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 list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-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/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4879' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29: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 container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --query --backup-management-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --workload-type + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6073' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --name --workload-type --protectable-item-type --server-name + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6073' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29: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: + - '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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Sat, 16 Jan 2021 17:29:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/75fa7767-2347-48f4-91be-5530df7011db?fabricName=Azure?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '139' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '138' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:29:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '137' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '136' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '135' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '134' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '133' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '132' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - -v -g -c -y + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '130' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '129' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '128' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:24 GMT + - Sat, 16 Jan 2021 17:30:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '127' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5017,49 +9681,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1171' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:26 GMT + - Sat, 16 Jan 2021 17:30:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '126' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5068,49 +9734,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -n -v -g --query -b + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1159' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:28 GMT + - Sat, 16 Jan 2021 17:30:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '125' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5119,49 +9787,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -w + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '3966' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:14:29 GMT + - Sat, 16 Jan 2021 17:30:15 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '124' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5170,42 +9840,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item initialize + - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -w -c + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/inquire?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 08 Jul 2019 09:15:03 GMT + - Sat, 16 Jan 2021 17:30:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/bfb0d35f-69ab-4fc4-8f93-7752db009d33?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -5219,49 +9893,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item list + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -w + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;newdb","name":"sqldatabase;mssqlserver;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"newdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '4744' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:34 GMT + - Sat, 16 Jan 2021 17:30:18 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5270,49 +9946,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -n -w -p -s + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;newdb","name":"sqldatabase;mssqlserver;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"newdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '4744' + - '2' content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:38 GMT + - Sat, 16 Jan 2021 17:30:19 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5324,39 +10002,202 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Mon, 08 Jul 2019 09:15:41 GMT + - Sat, 16 Jan 2021 17:30:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '120' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '119' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '118' + 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Sat, 16 Jan 2021 17:30:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-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: + - '117' x-powered-by: - ASP.NET status: @@ -5374,18 +10215,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5393,11 +10236,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:42 GMT + - Sat, 16 Jan 2021 17:30:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5406,6 +10249,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -5423,18 +10268,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5442,11 +10289,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:43 GMT + - Sat, 16 Jan 2021 17:30:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5455,6 +10302,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -5472,18 +10321,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5491,11 +10342,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:45 GMT + - Sat, 16 Jan 2021 17:30:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5504,6 +10355,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -5521,18 +10374,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5540,11 +10395,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:48 GMT + - Sat, 16 Jan 2021 17:30:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5553,6 +10408,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -5570,18 +10427,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5589,11 +10448,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:50 GMT + - Sat, 16 Jan 2021 17:30:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5602,6 +10461,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -5619,18 +10480,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5638,11 +10501,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:51 GMT + - Sat, 16 Jan 2021 17:30:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5651,6 +10514,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -5668,18 +10533,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5687,11 +10554,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:53 GMT + - Sat, 16 Jan 2021 17:30:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5700,6 +10567,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -5717,18 +10586,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5736,11 +10607,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:55 GMT + - Sat, 16 Jan 2021 17:30:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5749,6 +10620,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -5766,18 +10639,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5785,11 +10660,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:57 GMT + - Sat, 16 Jan 2021 17:30:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5798,6 +10673,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -5815,18 +10692,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5834,11 +10713,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:15:58 GMT + - Sat, 16 Jan 2021 17:30:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5847,6 +10726,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -5864,18 +10745,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5883,11 +10766,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:00 GMT + - Sat, 16 Jan 2021 17:30:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5896,6 +10779,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -5913,18 +10798,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5932,11 +10819,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:02 GMT + - Sat, 16 Jan 2021 17:30:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5945,6 +10832,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -5962,18 +10851,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5981,11 +10872,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:04 GMT + - Sat, 16 Jan 2021 17:30:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -5994,6 +10885,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -6011,18 +10904,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6030,11 +10925,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:05 GMT + - Sat, 16 Jan 2021 17:30:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6043,6 +10938,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -6060,18 +10957,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6079,11 +10978,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:07 GMT + - Sat, 16 Jan 2021 17:30:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6092,6 +10991,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -6109,18 +11010,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6128,11 +11031,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:09 GMT + - Sat, 16 Jan 2021 17:30:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6141,6 +11044,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -6158,18 +11063,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6177,11 +11084,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:11 GMT + - Sat, 16 Jan 2021 17:30:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6190,6 +11097,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -6207,18 +11116,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6226,11 +11137,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:13 GMT + - Sat, 16 Jan 2021 17:30:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6239,6 +11150,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -6256,18 +11169,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6275,11 +11190,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:15 GMT + - Sat, 16 Jan 2021 17:30:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6288,6 +11203,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -6305,18 +11222,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6324,11 +11243,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:17 GMT + - Sat, 16 Jan 2021 17:30:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6337,6 +11256,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -6354,18 +11275,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6373,11 +11296,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:18 GMT + - Sat, 16 Jan 2021 17:30:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6386,6 +11309,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -6403,18 +11328,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6422,11 +11349,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:20 GMT + - Sat, 16 Jan 2021 17:30:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6435,6 +11362,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -6452,18 +11381,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6471,11 +11402,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:22 GMT + - Sat, 16 Jan 2021 17:30:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6484,6 +11415,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -6501,18 +11434,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6520,11 +11455,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:24 GMT + - Sat, 16 Jan 2021 17:30:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6533,6 +11468,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -6550,18 +11487,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6569,11 +11508,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:25 GMT + - Sat, 16 Jan 2021 17:30:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6582,6 +11521,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -6599,18 +11540,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6618,11 +11561,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:28 GMT + - Sat, 16 Jan 2021 17:30:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6631,6 +11574,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -6648,18 +11593,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6667,11 +11614,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:30 GMT + - Sat, 16 Jan 2021 17:30:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6680,6 +11627,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -6697,18 +11646,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6716,11 +11667,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:31 GMT + - Sat, 16 Jan 2021 17:30:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6729,6 +11680,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -6746,18 +11699,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6765,11 +11720,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:33 GMT + - Sat, 16 Jan 2021 17:31:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6778,6 +11733,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -6795,18 +11752,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6814,11 +11773,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:35 GMT + - Sat, 16 Jan 2021 17:31:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6827,6 +11786,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -6844,18 +11805,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6863,11 +11826,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:36 GMT + - Sat, 16 Jan 2021 17:31:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6876,6 +11839,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -6893,18 +11858,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6912,11 +11879,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:38 GMT + - Sat, 16 Jan 2021 17:31:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6925,6 +11892,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '85' x-powered-by: - ASP.NET status: @@ -6942,18 +11911,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6961,11 +11932,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:40 GMT + - Sat, 16 Jan 2021 17:31:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -6974,6 +11945,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' x-powered-by: - ASP.NET status: @@ -6991,18 +11964,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7010,11 +11985,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:42 GMT + - Sat, 16 Jan 2021 17:31:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7023,6 +11998,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '83' x-powered-by: - ASP.NET status: @@ -7040,18 +12017,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7059,11 +12038,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:43 GMT + - Sat, 16 Jan 2021 17:31:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7072,6 +12051,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' x-powered-by: - ASP.NET status: @@ -7089,18 +12070,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7108,11 +12091,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:46 GMT + - Sat, 16 Jan 2021 17:31:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7121,6 +12104,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '81' x-powered-by: - ASP.NET status: @@ -7138,18 +12123,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7157,11 +12144,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:47 GMT + - Sat, 16 Jan 2021 17:31:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7170,6 +12157,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' x-powered-by: - ASP.NET status: @@ -7187,18 +12176,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7206,11 +12197,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:49 GMT + - Sat, 16 Jan 2021 17:31:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7219,6 +12210,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '79' x-powered-by: - ASP.NET status: @@ -7236,18 +12229,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7255,11 +12250,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:51 GMT + - Sat, 16 Jan 2021 17:31:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7268,6 +12263,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' x-powered-by: - ASP.NET status: @@ -7285,18 +12282,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7304,11 +12303,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:53 GMT + - Sat, 16 Jan 2021 17:31:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7317,6 +12316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '77' x-powered-by: - ASP.NET status: @@ -7334,18 +12335,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7353,11 +12356,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:54 GMT + - Sat, 16 Jan 2021 17:31:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7366,6 +12369,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' x-powered-by: - ASP.NET status: @@ -7383,18 +12388,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7402,11 +12409,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:57 GMT + - Sat, 16 Jan 2021 17:31:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7415,6 +12422,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '75' x-powered-by: - ASP.NET status: @@ -7432,18 +12441,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7451,11 +12462,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:16:58 GMT + - Sat, 16 Jan 2021 17:31:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7464,6 +12475,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' x-powered-by: - ASP.NET status: @@ -7481,18 +12494,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7500,11 +12515,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:00 GMT + - Sat, 16 Jan 2021 17:31:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7513,6 +12528,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '73' x-powered-by: - ASP.NET status: @@ -7530,18 +12547,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7549,11 +12568,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:02 GMT + - Sat, 16 Jan 2021 17:31:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7562,6 +12581,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' x-powered-by: - ASP.NET status: @@ -7579,18 +12600,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7598,11 +12621,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:04 GMT + - Sat, 16 Jan 2021 17:31:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7611,6 +12634,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '71' x-powered-by: - ASP.NET status: @@ -7628,18 +12653,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7647,11 +12674,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:05 GMT + - Sat, 16 Jan 2021 17:31:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7660,6 +12687,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' x-powered-by: - ASP.NET status: @@ -7677,18 +12706,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7696,11 +12727,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:08 GMT + - Sat, 16 Jan 2021 17:31:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7709,6 +12740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '69' x-powered-by: - ASP.NET status: @@ -7726,18 +12759,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7745,11 +12780,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:09 GMT + - Sat, 16 Jan 2021 17:31:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7758,6 +12793,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' x-powered-by: - ASP.NET status: @@ -7775,18 +12812,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7794,11 +12833,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:11 GMT + - Sat, 16 Jan 2021 17:31:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7807,6 +12846,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '67' x-powered-by: - ASP.NET status: @@ -7824,18 +12865,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7843,11 +12886,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:12 GMT + - Sat, 16 Jan 2021 17:31:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7856,6 +12899,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' x-powered-by: - ASP.NET status: @@ -7873,18 +12918,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7892,11 +12939,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:14 GMT + - Sat, 16 Jan 2021 17:31:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7905,6 +12952,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '65' x-powered-by: - ASP.NET status: @@ -7922,18 +12971,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7941,11 +12992,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:16 GMT + - Sat, 16 Jan 2021 17:31:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -7954,6 +13005,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' x-powered-by: - ASP.NET status: @@ -7971,18 +13024,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7990,11 +13045,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:18 GMT + - Sat, 16 Jan 2021 17:31:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8003,6 +13058,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '63' x-powered-by: - ASP.NET status: @@ -8020,18 +13077,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8039,11 +13098,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:19 GMT + - Sat, 16 Jan 2021 17:31:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8052,6 +13111,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' x-powered-by: - ASP.NET status: @@ -8069,18 +13130,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8088,11 +13151,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:22 GMT + - Sat, 16 Jan 2021 17:31:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8101,6 +13164,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '61' x-powered-by: - ASP.NET status: @@ -8118,18 +13183,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8137,11 +13204,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:24 GMT + - Sat, 16 Jan 2021 17:31:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8150,6 +13217,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' x-powered-by: - ASP.NET status: @@ -8167,18 +13236,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8186,11 +13257,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:26 GMT + - Sat, 16 Jan 2021 17:31:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8199,6 +13270,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' x-powered-by: - ASP.NET status: @@ -8216,18 +13289,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8235,11 +13310,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:27 GMT + - Sat, 16 Jan 2021 17:31:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8248,6 +13323,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' x-powered-by: - ASP.NET status: @@ -8265,18 +13342,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8284,11 +13363,11 @@ interactions: content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:30 GMT + - Sat, 16 Jan 2021 17:31:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 pragma: - no-cache server: @@ -8297,6 +13376,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '57' x-powered-by: - ASP.NET status: @@ -8314,14 +13395,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -n -y + - -v -g -c -y User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 response: body: string: '' @@ -8331,7 +13412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 08 Jul 2019 09:17:31 GMT + - Sat, 16 Jan 2021 17:31:40 GMT expires: - '-1' pragma: @@ -8340,6 +13421,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' x-powered-by: - ASP.NET status: @@ -8357,26 +13440,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3719' content-type: - application/json date: - - Mon, 08 Jul 2019 09:17:38 GMT + - Sat, 16 Jan 2021 17:31:41 GMT expires: - '-1' pragma: @@ -8391,6 +13490,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml index 3c623939ed6..97d6ede99df 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml @@ -13,24 +13,54 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-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/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '1108' + - '10681' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:45 GMT + - Tue, 12 Jan 2021 11:26:15 GMT expires: - '-1' pragma: @@ -45,6 +75,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -58,30 +90,513 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - 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.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + 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;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '12895' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/backupPolicies/HourlyLogBackup?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1066' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '319' + Content-Type: + - application/json; charset=utf-8 + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: PUT + 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=2020-10-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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 12 Jan 2021 11:26:18 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl + Connection: + - keep-alive + 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.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + response: + body: + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 11:26: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: + - '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-azurewl Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-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/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}}]}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1560' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:45 GMT + - Tue, 12 Jan 2021 11:26:26 GMT expires: - '-1' pragma: @@ -96,6 +611,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -113,26 +630,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupPolicies/HourlyLogBackup?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1066' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:46 GMT + - Tue, 12 Jan 2021 11:26:27 GMT expires: - '-1' pragma: @@ -147,15 +664,15 @@ interactions: - 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: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", - "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' + body: null headers: Accept: - application/json @@ -165,48 +682,48 @@ interactions: - backup protection enable-for-azurewl Connection: - keep-alive - Content-Length: - - '319' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: PUT - 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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Thu, 10 Oct 2019 10:22:47 GMT + - Tue, 12 Jan 2021 11:26:28 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-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: + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -219,26 +736,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:47 GMT + - Tue, 12 Jan 2021 11:26:29 GMT expires: - '-1' pragma: @@ -253,6 +770,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -270,26 +789,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:52 GMT + - Tue, 12 Jan 2021 11:26:30 GMT expires: - '-1' pragma: @@ -304,6 +823,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -321,26 +842,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:53 GMT + - Tue, 12 Jan 2021 11:26:33 GMT expires: - '-1' pragma: @@ -355,6 +876,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -372,26 +895,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:55 GMT + - Tue, 12 Jan 2021 11:26:34 GMT expires: - '-1' pragma: @@ -406,6 +929,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -423,26 +948,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:56 GMT + - Tue, 12 Jan 2021 11:26:35 GMT expires: - '-1' pragma: @@ -457,6 +982,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -474,26 +1001,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:57 GMT + - Tue, 12 Jan 2021 11:26:36 GMT expires: - '-1' pragma: @@ -508,6 +1035,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -525,26 +1054,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:22:59 GMT + - Tue, 12 Jan 2021 11:26:37 GMT expires: - '-1' pragma: @@ -559,6 +1088,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -576,26 +1107,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:01 GMT + - Tue, 12 Jan 2021 11:26:38 GMT expires: - '-1' pragma: @@ -610,6 +1141,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -627,26 +1160,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:02 GMT + - Tue, 12 Jan 2021 11:26:39 GMT expires: - '-1' pragma: @@ -661,6 +1194,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -678,26 +1213,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:03 GMT + - Tue, 12 Jan 2021 11:26:41 GMT expires: - '-1' pragma: @@ -712,6 +1247,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -729,26 +1266,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:04 GMT + - Tue, 12 Jan 2021 11:26:42 GMT expires: - '-1' pragma: @@ -763,6 +1300,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -780,26 +1319,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:06 GMT + - Tue, 12 Jan 2021 11:26:43 GMT expires: - '-1' pragma: @@ -814,6 +1353,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -831,26 +1372,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:07 GMT + - Tue, 12 Jan 2021 11:26:44 GMT expires: - '-1' pragma: @@ -865,6 +1406,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -882,26 +1425,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:08 GMT + - Tue, 12 Jan 2021 11:26:45 GMT expires: - '-1' pragma: @@ -916,6 +1459,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -933,26 +1478,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:10 GMT + - Tue, 12 Jan 2021 11:26:46 GMT expires: - '-1' pragma: @@ -967,6 +1512,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -984,26 +1531,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:11 GMT + - Tue, 12 Jan 2021 11:26:47 GMT expires: - '-1' pragma: @@ -1018,6 +1565,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -1035,26 +1584,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:12 GMT + - Tue, 12 Jan 2021 11:26:50 GMT expires: - '-1' pragma: @@ -1069,6 +1618,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -1086,26 +1637,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:14 GMT + - Tue, 12 Jan 2021 11:26:51 GMT expires: - '-1' pragma: @@ -1120,6 +1671,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1137,26 +1690,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:15 GMT + - Tue, 12 Jan 2021 11:26:52 GMT expires: - '-1' pragma: @@ -1171,6 +1724,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -1188,26 +1743,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:16 GMT + - Tue, 12 Jan 2021 11:26:53 GMT expires: - '-1' pragma: @@ -1222,6 +1777,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -1239,26 +1796,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:17 GMT + - Tue, 12 Jan 2021 11:26:54 GMT expires: - '-1' pragma: @@ -1273,6 +1830,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -1290,26 +1849,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:19 GMT + - Tue, 12 Jan 2021 11:26:55 GMT expires: - '-1' pragma: @@ -1324,6 +1883,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -1341,26 +1902,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:20 GMT + - Tue, 12 Jan 2021 11:26:57 GMT expires: - '-1' pragma: @@ -1375,6 +1936,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' x-powered-by: - ASP.NET status: @@ -1392,26 +1955,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:21 GMT + - Tue, 12 Jan 2021 11:26:58 GMT expires: - '-1' pragma: @@ -1426,6 +1989,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: @@ -1443,26 +2008,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:23 GMT + - Tue, 12 Jan 2021 11:26:59 GMT expires: - '-1' pragma: @@ -1477,6 +2042,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' x-powered-by: - ASP.NET status: @@ -1494,26 +2061,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:25 GMT + - Tue, 12 Jan 2021 11:27:00 GMT expires: - '-1' pragma: @@ -1528,6 +2095,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' x-powered-by: - ASP.NET status: @@ -1545,26 +2114,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:25 GMT + - Tue, 12 Jan 2021 11:27:01 GMT expires: - '-1' pragma: @@ -1579,6 +2148,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: @@ -1596,26 +2167,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:28 GMT + - Tue, 12 Jan 2021 11:27:03 GMT expires: - '-1' pragma: @@ -1630,6 +2201,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' x-powered-by: - ASP.NET status: @@ -1647,26 +2220,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:28 GMT + - Tue, 12 Jan 2021 11:27:04 GMT expires: - '-1' pragma: @@ -1681,6 +2254,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -1698,26 +2273,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:30 GMT + - Tue, 12 Jan 2021 11:27:05 GMT expires: - '-1' pragma: @@ -1732,6 +2307,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' x-powered-by: - ASP.NET status: @@ -1749,26 +2326,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:31 GMT + - Tue, 12 Jan 2021 11:27:06 GMT expires: - '-1' pragma: @@ -1783,6 +2360,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' x-powered-by: - ASP.NET status: @@ -1800,26 +2379,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:33 GMT + - Tue, 12 Jan 2021 11:27:08 GMT expires: - '-1' pragma: @@ -1834,6 +2413,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -1851,26 +2432,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:35 GMT + - Tue, 12 Jan 2021 11:27:10 GMT expires: - '-1' pragma: @@ -1885,6 +2466,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' x-powered-by: - ASP.NET status: @@ -1902,26 +2485,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:36 GMT + - Tue, 12 Jan 2021 11:27:11 GMT expires: - '-1' pragma: @@ -1936,6 +2519,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' x-powered-by: - ASP.NET status: @@ -1953,26 +2538,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:37 GMT + - Tue, 12 Jan 2021 11:27:12 GMT expires: - '-1' pragma: @@ -1987,6 +2572,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -2004,26 +2591,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:39 GMT + - Tue, 12 Jan 2021 11:27:13 GMT expires: - '-1' pragma: @@ -2038,6 +2625,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' x-powered-by: - ASP.NET status: @@ -2055,26 +2644,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:40 GMT + - Tue, 12 Jan 2021 11:27:14 GMT expires: - '-1' pragma: @@ -2089,6 +2678,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' x-powered-by: - ASP.NET status: @@ -2106,26 +2697,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:41 GMT + - Tue, 12 Jan 2021 11:27:15 GMT expires: - '-1' pragma: @@ -2140,6 +2731,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' x-powered-by: - ASP.NET status: @@ -2157,26 +2750,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:42 GMT + - Tue, 12 Jan 2021 11:27:17 GMT expires: - '-1' pragma: @@ -2191,6 +2784,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' x-powered-by: - ASP.NET status: @@ -2208,26 +2803,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:44 GMT + - Tue, 12 Jan 2021 11:27:18 GMT expires: - '-1' pragma: @@ -2242,6 +2837,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' x-powered-by: - ASP.NET status: @@ -2259,26 +2856,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:46 GMT + - Tue, 12 Jan 2021 11:27:20 GMT expires: - '-1' pragma: @@ -2293,6 +2890,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' x-powered-by: - ASP.NET status: @@ -2310,26 +2909,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:47 GMT + - Tue, 12 Jan 2021 11:27:21 GMT expires: - '-1' pragma: @@ -2344,6 +2943,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' x-powered-by: - ASP.NET status: @@ -2361,26 +2962,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:48 GMT + - Tue, 12 Jan 2021 11:27:22 GMT expires: - '-1' pragma: @@ -2395,6 +2996,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' x-powered-by: - ASP.NET status: @@ -2412,26 +3015,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:50 GMT + - Tue, 12 Jan 2021 11:27:23 GMT expires: - '-1' pragma: @@ -2446,6 +3049,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -2463,26 +3068,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:51 GMT + - Tue, 12 Jan 2021 11:27:24 GMT expires: - '-1' pragma: @@ -2497,6 +3102,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' x-powered-by: - ASP.NET status: @@ -2514,26 +3121,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:53 GMT + - Tue, 12 Jan 2021 11:27:25 GMT expires: - '-1' pragma: @@ -2548,6 +3155,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' x-powered-by: - ASP.NET status: @@ -2565,26 +3174,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:54 GMT + - Tue, 12 Jan 2021 11:27:26 GMT expires: - '-1' pragma: @@ -2599,6 +3208,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' x-powered-by: - ASP.NET status: @@ -2616,26 +3227,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:56 GMT + - Tue, 12 Jan 2021 11:27:28 GMT expires: - '-1' pragma: @@ -2650,6 +3261,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' x-powered-by: - ASP.NET status: @@ -2667,26 +3280,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:57 GMT + - Tue, 12 Jan 2021 11:27:30 GMT expires: - '-1' pragma: @@ -2701,6 +3314,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' x-powered-by: - ASP.NET status: @@ -2718,26 +3333,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:23:59 GMT + - Tue, 12 Jan 2021 11:27:31 GMT expires: - '-1' pragma: @@ -2752,6 +3367,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '90' x-powered-by: - ASP.NET status: @@ -2769,26 +3386,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:00 GMT + - Tue, 12 Jan 2021 11:27:32 GMT expires: - '-1' pragma: @@ -2803,6 +3420,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' x-powered-by: - ASP.NET status: @@ -2820,26 +3439,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:01 GMT + - Tue, 12 Jan 2021 11:27:33 GMT expires: - '-1' pragma: @@ -2854,6 +3473,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -2871,26 +3492,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 response: body: - string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"Succeeded","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"2019-10-10T10:22:47.6098922Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ee4a1396-0056-4508-b00f-dc270c381dd6"}}' + string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"Succeeded","startTime":"2021-01-12T11:26:18.779124Z","endTime":"2021-01-12T11:26:18.779124Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:03 GMT + - Tue, 12 Jan 2021 11:27:34 GMT expires: - '-1' pragma: @@ -2905,6 +3526,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' x-powered-by: - ASP.NET status: @@ -2922,27 +3545,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/ee4a1396-0056-4508-b00f-dc270c381dd6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/ee4a1396-0056-4508-b00f-dc270c381dd6","name":"ee4a1396-0056-4508-b00f-dc270c381dd6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M15.3444206S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"2019-10-10T10:24:02.9543128Z","activityId":"e6eda092-eb47-11e9-9c8f-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1","name":"069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.776769S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T11:26:18.779124Z","endTime":"2021-01-12T11:27:33.555893Z","activityId":"fbe3cb27-54c8-11eb-8917-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '726' + - '746' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:03 GMT + - Tue, 12 Jan 2021 11:27:35 GMT expires: - '-1' pragma: @@ -2958,6 +3581,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2977,15 +3602,15 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-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?api-version=2020-10-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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache @@ -2994,7 +3619,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:04 GMT + - Tue, 12 Jan 2021 11:27:35 GMT expires: - '-1' pragma: @@ -3009,6 +3634,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3026,26 +3653,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"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"}}' + 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":"70369414519909","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"}}' headers: cache-control: - no-cache content-length: - - '1334' + - '1376' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:04 GMT + - Tue, 12 Jan 2021 11:27:37 GMT expires: - '-1' pragma: @@ -3060,6 +3687,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3067,7 +3696,7 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-02-11T11:27:37.66585Z"}}' headers: Accept: - application/json @@ -3078,34 +3707,34 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '172' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backup?api-version=2016-12-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/backup?api-version=2020-10-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/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-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/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 10:24:05 GMT + - Tue, 12 Jan 2021 11:27:38 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/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-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/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3113,7 +3742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3131,26 +3760,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 response: body: - string: '{"id":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","name":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"6c62af1b-3d14-42c1-b77c-afb7b711a427","name":"6c62af1b-3d14-42c1-b77c-afb7b711a427","status":"Succeeded","startTime":"2021-01-12T11:27:38.3668181Z","endTime":"2021-01-12T11:27:38.3668181Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"82e7e934-13a2-497c-b78e-6a8a6cd2c670"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:06 GMT + - Tue, 12 Jan 2021 11:27:38 GMT expires: - '-1' pragma: @@ -3165,6 +3794,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3182,32 +3813,35 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","name":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","status":"Succeeded","startTime":"2019-10-10T10:24:06.044271Z","endTime":"2019-10-10T10:24:06.044271Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6330efc-4910-4dd9-af54-086b0946e550"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6856981S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '302' + - '759' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:07 GMT + - Tue, 12 Jan 2021 11:27: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: @@ -3216,6 +3850,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3229,32 +3865,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --retain-until --enable-compression + - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.8807577S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.2073523S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '740' + - '759' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:08 GMT + - Tue, 12 Jan 2021 11:27:39 GMT expires: - '-1' pragma: @@ -3270,6 +3906,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -3289,26 +3927,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.3115423S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.5880713S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '740' + - '759' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:09 GMT + - Tue, 12 Jan 2021 11:27:40 GMT expires: - '-1' pragma: @@ -3324,6 +3962,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3343,26 +3983,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.6238103S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.8124691S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '740' + - '760' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:09 GMT + - Tue, 12 Jan 2021 11:28:10 GMT expires: - '-1' pragma: @@ -3378,6 +4018,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -3397,26 +4039,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.9224343S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.0463197S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '741' + - '761' content-type: - application/json date: - - Thu, 10 Oct 2019 10:24:39 GMT + - Tue, 12 Jan 2021 11:28:40 GMT expires: - '-1' pragma: @@ -3432,6 +4074,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -3451,26 +4095,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.2398955S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.3116989S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '742' + - '762' content-type: - application/json date: - - Thu, 10 Oct 2019 10:25:09 GMT + - Tue, 12 Jan 2021 11:29:11 GMT expires: - '-1' pragma: @@ -3486,6 +4130,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3505,26 +4151,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M35.1455037S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M2.4653931S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.1147"}},"isUserTriggered":true,"entityFriendlyName":"msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2021-01-12T11:27:38.3668181Z","endTime":"2021-01-12T11:29:40.8322112Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '743' + - '836' content-type: - application/json date: - - Thu, 10 Oct 2019 10:25:40 GMT + - Tue, 12 Jan 2021 11:29:41 GMT expires: - '-1' pragma: @@ -3540,6 +4187,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3553,39 +4202,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup item show Connection: - keep-alive ParameterSetName: - - -v -g -n + - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.4451946S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + 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-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","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-01-12T11:27:59Z"}}' headers: cache-control: - no-cache content-length: - - '742' + - '1602' content-type: - application/json date: - - Thu, 10 Oct 2019 10:26:11 GMT + - Tue, 12 Jan 2021 11:30: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: @@ -3594,6 +4240,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -3607,39 +4255,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M36.2763183S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + 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-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","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-01-12T11:27:59Z"}}' headers: cache-control: - no-cache content-length: - - '743' + - '1602' content-type: - application/json date: - - Thu, 10 Oct 2019 10:26:42 GMT + - Tue, 12 Jan 2021 11:30: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: @@ -3648,11 +4293,67 @@ interactions: - 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": {"policyId": "", "protectedItemType": "AzureVmWorkloadSQLDatabase", + "protectionState": "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + accept-language: + - en-US + method: PUT + 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=2020-10-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/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 12 Jan 2021 11:30:15 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/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-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: @@ -3661,40 +4362,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.1249967S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2019-10-10T10:24:06.044271Z","endTime":"2019-10-10T10:27:09.1692677Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '824' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:12 GMT + - Tue, 12 Jan 2021 11:30: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: @@ -3703,6 +4400,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -3716,30 +4415,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T10:24:46Z"}}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1409' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:44 GMT + - Tue, 12 Jan 2021 11:30:17 GMT expires: - '-1' pragma: @@ -3754,6 +4453,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -3773,24 +4474,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T10:24:46Z"}}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1409' + - '188' content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:44 GMT + - Tue, 12 Jan 2021 11:30:18 GMT expires: - '-1' pragma: @@ -3805,14 +4506,15 @@ interactions: - 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: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSQLDatabase", - "protectionState": "ProtectionStopped"}}' + body: null headers: Accept: - application/json @@ -3822,48 +4524,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '123' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: PUT - 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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 10 Oct 2019 10:27:45 GMT + - Tue, 12 Jan 2021 11:30:19 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-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: + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3878,15 +4580,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3895,7 +4597,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:45 GMT + - Tue, 12 Jan 2021 11:30:20 GMT expires: - '-1' pragma: @@ -3910,6 +4612,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -3929,15 +4633,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3946,7 +4650,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:47 GMT + - Tue, 12 Jan 2021 11:30:21 GMT expires: - '-1' pragma: @@ -3961,6 +4665,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -3980,15 +4686,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3997,7 +4703,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:48 GMT + - Tue, 12 Jan 2021 11:30:23 GMT expires: - '-1' pragma: @@ -4012,6 +4718,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -4031,15 +4739,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4048,7 +4756,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:50 GMT + - Tue, 12 Jan 2021 11:30:24 GMT expires: - '-1' pragma: @@ -4063,6 +4771,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -4082,15 +4792,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4099,7 +4809,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:52 GMT + - Tue, 12 Jan 2021 11:30:25 GMT expires: - '-1' pragma: @@ -4114,6 +4824,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -4133,15 +4845,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4150,7 +4862,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:54 GMT + - Tue, 12 Jan 2021 11:30:26 GMT expires: - '-1' pragma: @@ -4165,6 +4877,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -4184,15 +4898,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4201,7 +4915,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:55 GMT + - Tue, 12 Jan 2021 11:30:27 GMT expires: - '-1' pragma: @@ -4216,6 +4930,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -4235,15 +4951,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4252,7 +4968,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:56 GMT + - Tue, 12 Jan 2021 11:30:29 GMT expires: - '-1' pragma: @@ -4267,6 +4983,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -4286,15 +5004,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4303,7 +5021,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:57 GMT + - Tue, 12 Jan 2021 11:30:30 GMT expires: - '-1' pragma: @@ -4318,6 +5036,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -4337,15 +5057,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4354,7 +5074,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:27:59 GMT + - Tue, 12 Jan 2021 11:30:31 GMT expires: - '-1' pragma: @@ -4369,6 +5089,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -4388,15 +5110,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4405,7 +5127,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:00 GMT + - Tue, 12 Jan 2021 11:30:32 GMT expires: - '-1' pragma: @@ -4420,6 +5142,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -4439,15 +5163,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4456,7 +5180,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:02 GMT + - Tue, 12 Jan 2021 11:30:33 GMT expires: - '-1' pragma: @@ -4471,6 +5195,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -4490,15 +5216,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4507,7 +5233,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:03 GMT + - Tue, 12 Jan 2021 11:30:35 GMT expires: - '-1' pragma: @@ -4522,6 +5248,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -4541,15 +5269,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4558,7 +5286,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:04 GMT + - Tue, 12 Jan 2021 11:30:36 GMT expires: - '-1' pragma: @@ -4573,6 +5301,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -4592,15 +5322,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4609,7 +5339,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:06 GMT + - Tue, 12 Jan 2021 11:30:37 GMT expires: - '-1' pragma: @@ -4624,6 +5354,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -4643,15 +5375,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4660,7 +5392,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:07 GMT + - Tue, 12 Jan 2021 11:30:39 GMT expires: - '-1' pragma: @@ -4675,6 +5407,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -4694,15 +5428,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4711,7 +5445,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:08 GMT + - Tue, 12 Jan 2021 11:30:40 GMT expires: - '-1' pragma: @@ -4726,6 +5460,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -4745,15 +5481,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4762,7 +5498,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:11 GMT + - Tue, 12 Jan 2021 11:30:41 GMT expires: - '-1' pragma: @@ -4777,6 +5513,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -4796,15 +5534,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4813,7 +5551,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:12 GMT + - Tue, 12 Jan 2021 11:30:43 GMT expires: - '-1' pragma: @@ -4828,6 +5566,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -4847,15 +5587,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4864,7 +5604,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:13 GMT + - Tue, 12 Jan 2021 11:30:44 GMT expires: - '-1' pragma: @@ -4879,6 +5619,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -4898,15 +5640,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4915,7 +5657,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:14 GMT + - Tue, 12 Jan 2021 11:30:45 GMT expires: - '-1' pragma: @@ -4930,6 +5672,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' x-powered-by: - ASP.NET status: @@ -4949,15 +5693,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4966,7 +5710,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:17 GMT + - Tue, 12 Jan 2021 11:30:46 GMT expires: - '-1' pragma: @@ -4981,6 +5725,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' x-powered-by: - ASP.NET status: @@ -5000,15 +5746,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 response: body: - string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"Succeeded","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"2019-10-10T10:27:45.4795924Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2"}}' + string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"Succeeded","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"2021-01-12T11:30:15.2108388Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2d7718c1-0e08-432c-8864-41a725023e28"}}' headers: cache-control: - no-cache @@ -5017,7 +5763,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:18 GMT + - Tue, 12 Jan 2021 11:30:47 GMT expires: - '-1' pragma: @@ -5032,6 +5778,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -5051,24 +5799,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/2d7718c1-0e08-432c-8864-41a725023e28?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2","name":"f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.263458S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"2019-10-10T10:28:17.7430504Z","activityId":"98a80dd2-eb48-11e9-884d-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/2d7718c1-0e08-432c-8864-41a725023e28","name":"2d7718c1-0e08-432c-8864-41a725023e28","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31.8276663S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"2021-01-12T11:30:47.0385051Z","activityId":"88f2fe19-54c9-11eb-8144-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '690' + - '714' content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:18 GMT + - Tue, 12 Jan 2021 11:30:48 GMT expires: - '-1' pragma: @@ -5084,6 +5832,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -5103,24 +5853,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"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","lastRecoveryPoint":"2019-10-10T10:24:46Z"}}' + 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":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","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","lastRecoveryPoint":"2021-01-12T11:27:59Z"}}' headers: cache-control: - no-cache content-length: - - '1239' + - '1432' content-type: - application/json date: - - Thu, 10 Oct 2019 10:28:19 GMT + - Tue, 12 Jan 2021 11:30:48 GMT expires: - '-1' pragma: @@ -5135,6 +5885,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: 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 9c7a0b6bbb4..e2bc3ff49e4 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,24 +13,54 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-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/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + 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;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No + SQL instances found on this machine.","recommendations":["Please install a + supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '1108' + - '10681' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:53 GMT + - Tue, 12 Jan 2021 11:52:09 GMT expires: - '-1' pragma: @@ -45,6 +75,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -64,15 +96,15 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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?api-version=2016-12-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?api-version=2020-10-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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + 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","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache @@ -81,7 +113,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:54 GMT + - Tue, 12 Jan 2021 11:52:10 GMT expires: - '-1' pragma: @@ -96,6 +128,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -115,24 +149,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:54 GMT + - Tue, 12 Jan 2021 11:52:11 GMT expires: - '-1' pragma: @@ -147,6 +181,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -166,24 +202,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:55 GMT + - Tue, 12 Jan 2021 11:52:11 GMT expires: - '-1' pragma: @@ -198,6 +234,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -217,24 +255,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T12:01:23Z","type":"Full"}},{"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"}}]}' + 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/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}},{"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/48527656679648","name":"48527656679648","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-12T11:27:59Z","type":"Full"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '1119' + - '1673' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:56 GMT + - Tue, 12 Jan 2021 11:52:12 GMT expires: - '-1' pragma: @@ -249,6 +287,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -262,30 +302,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show + - backup recoveryconfig show Connection: - keep-alive ParameterSetName: - - --vault-name -g --protectable-item-type --server-name --name --workload-type + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 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/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":4,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb_restored_sarath","name":"sqldatabase;mssqlserver;msdb_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb_restored_sarath","protectionState":"NotProtected"}}]}' + 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;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '1607' + - '12149' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:56 GMT + - Tue, 12 Jan 2021 11:52:14 GMT expires: - '-1' pragma: @@ -300,6 +345,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -317,26 +364,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:57 GMT + - Tue, 12 Jan 2021 11:52:14 GMT expires: - '-1' pragma: @@ -351,6 +399,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -368,26 +418,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:58 GMT + - Tue, 12 Jan 2021 11:52:15 GMT expires: - '-1' pragma: @@ -402,6 +453,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -419,19 +472,20 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/41252921875258?api-version=2019-06-15 + 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/35418445464598?api-version=2020-10-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/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-10-10T12:01:23Z","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/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-12T11:47:16Z","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":"2019-10-10T12:01:23Z","type":"Full"}}' + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}}' headers: cache-control: - no-cache @@ -440,7 +494,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:58 GMT + - Tue, 12 Jan 2021 11:52:16 GMT expires: - '-1' pragma: @@ -455,6 +509,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -472,28 +528,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + - --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.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/items?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadItemType%20eq%20%27SQLInstance%27 + 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/items?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadItemType%20eq%20%27SQLInstance%27 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/protectableItems/SQLInstance;MSSQLSERVER","name":"SQLInstance;MSSQLSERVER","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\"},{"type":"Log","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\"}],"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":4,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + 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/protectableItems/SQLInstance;MSSQLSERVER","name":"SQLInstance;MSSQLSERVER","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\"},{"type":"Log","path":"G:\\log\\"}],"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":3,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '915' + - '784' content-type: - application/json date: - - Thu, 10 Oct 2019 12:22:59 GMT + - Tue, 12 Jan 2021 11:52:16 GMT expires: - '-1' pragma: @@ -508,6 +563,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -516,15 +573,14 @@ interactions: - request: body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm", - "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm", - "databaseName": "MSSQLSERVER/msdb_restored_10_10_2019_1752"}, "shouldUseAlternateTargetLocation": + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm", + "databaseName": "MSSQLSERVER/MSSQLSERVER"}, "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false, "alternateDirectoryPaths": [{"mappingType": "Data", "sourceLogicalName": "MSDBData", "sourcePath": "C:\\Program Files\\Microsoft - SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf", "targetPath": "C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData_1570710179.mdf"}, + SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf", "targetPath": "F:\\data\\MSDBData_1610452337.mdf"}, {"mappingType": "Log", "sourceLogicalName": "MSDBLog", "sourcePath": "C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf", - "targetPath": "C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog_1570710179.ldf"}]}}' + "targetPath": "G:\\log\\MSDBLog_1610452337.ldf"}]}}' headers: Accept: - application/json @@ -535,34 +591,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1250' + - '1101' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/41252921875258/restore?api-version=2019-06-15 + 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/35418445464598/restore?api-version=2020-10-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/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-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/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 12:23:00 GMT + - Tue, 12 Jan 2021 11:52:17 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/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-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/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -590,66 +646,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 response: body: - string: '{"id":"80aa22d7-88e2-491d-a9ea-6e924584046e","name":"80aa22d7-88e2-491d-a9ea-6e924584046e","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Thu, 10 Oct 2019 12:23: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-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.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 - 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/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 - response: - body: - string: '{"id":"80aa22d7-88e2-491d-a9ea-6e924584046e","name":"80aa22d7-88e2-491d-a9ea-6e924584046e","status":"Succeeded","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"2019-10-10T12:22:59.9406697Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4e9330a4-79e7-42c6-a26c-c2c00433fda6"}}' + string: '{"id":"71a5a36a-7c72-471b-ade8-423650acef7b","name":"71a5a36a-7c72-471b-ade8-423650acef7b","status":"Succeeded","startTime":"2021-01-12T11:52:17.9388081Z","endTime":"2021-01-12T11:52:17.9388081Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c53dd090-48d2-4694-a6d1-5da6a405e3a3"}}' headers: cache-control: - no-cache @@ -658,7 +663,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:23:01 GMT + - Tue, 12 Jan 2021 11:52:18 GMT expires: - '-1' pragma: @@ -673,6 +678,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -692,26 +699,27 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.7252878S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6335998S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:23:02 GMT + - Tue, 12 Jan 2021 11:52:19 GMT expires: - '-1' pragma: @@ -727,6 +735,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -746,26 +756,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.6094663S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.0813322S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:23:03 GMT + - Tue, 12 Jan 2021 11:52:19 GMT expires: - '-1' pragma: @@ -781,6 +792,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -800,26 +813,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.9309371S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.3298422S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:23:03 GMT + - Tue, 12 Jan 2021 11:52:20 GMT expires: - '-1' pragma: @@ -835,6 +849,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -854,26 +870,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2380705S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.5966183S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '791' + - '802' content-type: - application/json date: - - Thu, 10 Oct 2019 12:23:33 GMT + - Tue, 12 Jan 2021 11:52:49 GMT expires: - '-1' pragma: @@ -889,6 +906,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -908,26 +927,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.5298211S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M2.8758236S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:24:04 GMT + - Tue, 12 Jan 2021 11:53:20 GMT expires: - '-1' pragma: @@ -943,6 +963,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -962,26 +984,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M35.1954462S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.1406482S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '793' + - '804' content-type: - application/json date: - - Thu, 10 Oct 2019 12:24:34 GMT + - Tue, 12 Jan 2021 11:53:50 GMT expires: - '-1' pragma: @@ -997,6 +1020,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1016,26 +1041,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.5580799S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M3.442121S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '802' content-type: - application/json date: - - Thu, 10 Oct 2019 12:25:04 GMT + - Tue, 12 Jan 2021 11:54:20 GMT expires: - '-1' pragma: @@ -1051,6 +1077,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1070,26 +1098,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M36.0757133S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M33.7249508S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '793' + - '804' content-type: - application/json date: - - Thu, 10 Oct 2019 12:25:35 GMT + - Tue, 12 Jan 2021 11:54:50 GMT expires: - '-1' pragma: @@ -1105,6 +1134,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1124,28 +1155,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M2.5992804S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M2.221676S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"10/10/2019 - 12:01:23 PM","RestoreDestination":"sarathvm/MSSQLSERVER/msdb_restored_10_10_2019_1752"}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"2019-10-10T12:26:02.5399501Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + MB)":"20.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"2021-01-12 + 11:47:16Z","RestoreDestination":"sarathvm/MSSQLSERVER/MSSQLSERVER"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-01-12T11:52:17.9388081Z","endTime":"2021-01-12T11:55:20.1604841Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '1001' + - '991' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:05 GMT + - Tue, 12 Jan 2021 11:55:21 GMT expires: - '-1' pragma: @@ -1161,6 +1192,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1180,24 +1213,24 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:36 GMT + - Tue, 12 Jan 2021 11:55:54 GMT expires: - '-1' pragma: @@ -1212,6 +1245,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1231,24 +1266,24 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + 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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '1410' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:37 GMT + - Tue, 12 Jan 2021 11:55:55 GMT expires: - '-1' pragma: @@ -1263,6 +1298,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1282,17 +1319,17 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/41252921875258?api-version=2019-06-15 + 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/35418445464598?api-version=2020-10-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/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-10-10T12:01:23Z","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/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-12T11:47:16Z","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":"2019-10-10T12:01:23Z","type":"Full"}}' + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}}' headers: cache-control: - no-cache @@ -1301,7 +1338,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:38 GMT + - Tue, 12 Jan 2021 11:55:56 GMT expires: - '-1' pragma: @@ -1316,6 +1353,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1341,28 +1380,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/41252921875258/restore?api-version=2019-06-15 + 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/35418445464598/restore?api-version=2020-10-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/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-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/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Oct 2019 12:26:38 GMT + - Tue, 12 Jan 2021 11:55:57 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/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-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/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1370,7 +1409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1390,24 +1429,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 response: body: - string: '{"id":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","name":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5c62156-3410-49ab-8a3d-d16059ee8996","name":"d5c62156-3410-49ab-8a3d-d16059ee8996","status":"Succeeded","startTime":"2021-01-12T11:55:57.9554233Z","endTime":"2021-01-12T11:55:57.9554233Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"97dd36c8-4561-4536-9699-2d66bffbf00e"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:39 GMT + - Tue, 12 Jan 2021 11:55:58 GMT expires: - '-1' pragma: @@ -1422,6 +1461,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -1441,30 +1482,34 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","name":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","status":"Succeeded","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"2019-10-10T12:26:39.4159727Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.1782466S","actionsInfo":[1],"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-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '304' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:40 GMT + - Tue, 12 Jan 2021 11:55: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: @@ -1473,6 +1518,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1486,32 +1533,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - --vault-name -g --recovery-config + - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.2751512S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.6850677S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:41 GMT + - Tue, 12 Jan 2021 11:55:59 GMT expires: - '-1' pragma: @@ -1527,6 +1575,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1546,26 +1596,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.7598595S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.9107233S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '801' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:42 GMT + - Tue, 12 Jan 2021 11:55:59 GMT expires: - '-1' pragma: @@ -1581,6 +1632,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -1600,26 +1653,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.0580689S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.1776219S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '790' + - '802' content-type: - application/json date: - - Thu, 10 Oct 2019 12:26:42 GMT + - Tue, 12 Jan 2021 11:56:31 GMT expires: - '-1' pragma: @@ -1635,6 +1689,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -1654,26 +1710,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.5785358S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.4482382S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '791' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:27:12 GMT + - Tue, 12 Jan 2021 11:57:01 GMT expires: - '-1' pragma: @@ -1689,6 +1746,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -1708,26 +1767,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.9272916S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.7416509S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '804' content-type: - application/json date: - - Thu, 10 Oct 2019 12:27:42 GMT + - Tue, 12 Jan 2021 11:57:30 GMT expires: - '-1' pragma: @@ -1743,6 +1803,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -1762,26 +1824,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M34.3645516S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.0373848S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '793' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:28:13 GMT + - Tue, 12 Jan 2021 11:58:01 GMT expires: - '-1' pragma: @@ -1797,6 +1860,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -1816,26 +1881,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.1051735S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M34.276425S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:28:44 GMT + - Tue, 12 Jan 2021 11:58:31 GMT expires: - '-1' pragma: @@ -1851,6 +1917,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -1870,26 +1938,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M35.9436843S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M4.5451025S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '793' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:29:15 GMT + - Tue, 12 Jan 2021 11:59:02 GMT expires: - '-1' pragma: @@ -1905,6 +1974,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -1924,26 +1995,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M6.2452767S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M35.09641S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '802' content-type: - application/json date: - - Thu, 10 Oct 2019 12:29:44 GMT + - Tue, 12 Jan 2021 11:59:33 GMT expires: - '-1' pragma: @@ -1959,6 +2031,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1978,26 +2052,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M36.5421707S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M5.6773628S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '793' + - '803' content-type: - application/json date: - - Thu, 10 Oct 2019 12:30:15 GMT + - Tue, 12 Jan 2021 12:00:02 GMT expires: - '-1' pragma: @@ -2013,6 +2088,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -2032,26 +2109,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M6.8100728S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M33.8292537S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-01-12 + 11:47:16Z","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"isUserTriggered":true,"entityFriendlyName":"msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-01-12T11:55:57.9554233Z","endTime":"2021-01-12T12:00:31.784677Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '792' + - '985' content-type: - application/json date: - - Thu, 10 Oct 2019 12:30:45 GMT + - Tue, 12 Jan 2021 12:00:33 GMT expires: - '-1' pragma: @@ -2067,6 +2146,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -2080,41 +2161,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2019-06-15 + 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=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M33.7787153S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"10/10/2019 - 12:01:23 PM","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"entityFriendlyName":"MSSQLSERVER/msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"2019-10-10T12:31:13.194688Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + 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-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"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-01-12T11:47:16Z"}}' headers: cache-control: - no-cache content-length: - - '976' + - '1753' content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:16 GMT + - Tue, 12 Jan 2021 12:01: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: @@ -2123,6 +2199,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -2139,46 +2217,46 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + method: DELETE + 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=2020-10-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":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"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":"2019-10-10T12:01:23Z"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1410' - content-type: - - application/json + - '0' date: - - Thu, 10 Oct 2019 12:31:47 GMT + - Tue, 12 Jan 2021 12:01:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-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-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2190,46 +2268,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US - method: DELETE - 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=2019-06-15 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Thu, 10 Oct 2019 12:31:48 GMT + - Tue, 12 Jan 2021 12:01:07 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperationResults/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-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-deletes: - - '14999' + 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: @@ -2244,15 +2324,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2261,7 +2341,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:48 GMT + - Tue, 12 Jan 2021 12:01:08 GMT expires: - '-1' pragma: @@ -2276,6 +2356,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -2295,15 +2377,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2312,7 +2394,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:49 GMT + - Tue, 12 Jan 2021 12:01:09 GMT expires: - '-1' pragma: @@ -2327,6 +2409,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -2346,15 +2430,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2363,7 +2447,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:51 GMT + - Tue, 12 Jan 2021 12:01:11 GMT expires: - '-1' pragma: @@ -2378,6 +2462,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -2397,15 +2483,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2414,7 +2500,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:52 GMT + - Tue, 12 Jan 2021 12:01:12 GMT expires: - '-1' pragma: @@ -2429,6 +2515,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -2448,15 +2536,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2465,7 +2553,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:53 GMT + - Tue, 12 Jan 2021 12:01:13 GMT expires: - '-1' pragma: @@ -2480,6 +2568,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -2499,15 +2589,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2516,7 +2606,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:55 GMT + - Tue, 12 Jan 2021 12:01:14 GMT expires: - '-1' pragma: @@ -2531,6 +2621,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -2550,15 +2642,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2567,7 +2659,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:56 GMT + - Tue, 12 Jan 2021 12:01:15 GMT expires: - '-1' pragma: @@ -2582,6 +2674,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: @@ -2601,15 +2695,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2618,7 +2712,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:57 GMT + - Tue, 12 Jan 2021 12:01:17 GMT expires: - '-1' pragma: @@ -2633,6 +2727,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -2652,15 +2748,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2669,7 +2765,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:31:58 GMT + - Tue, 12 Jan 2021 12:01:18 GMT expires: - '-1' pragma: @@ -2684,6 +2780,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' x-powered-by: - ASP.NET status: @@ -2703,15 +2801,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2720,7 +2818,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:00 GMT + - Tue, 12 Jan 2021 12:01:19 GMT expires: - '-1' pragma: @@ -2735,6 +2833,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -2754,15 +2854,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2771,7 +2871,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:02 GMT + - Tue, 12 Jan 2021 12:01:20 GMT expires: - '-1' pragma: @@ -2786,6 +2886,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -2805,15 +2907,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2822,7 +2924,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:03 GMT + - Tue, 12 Jan 2021 12:01:21 GMT expires: - '-1' pragma: @@ -2837,6 +2939,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '137' x-powered-by: - ASP.NET status: @@ -2856,15 +2960,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2873,7 +2977,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:04 GMT + - Tue, 12 Jan 2021 12:01:23 GMT expires: - '-1' pragma: @@ -2888,6 +2992,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '136' x-powered-by: - ASP.NET status: @@ -2907,15 +3013,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2924,7 +3030,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:06 GMT + - Tue, 12 Jan 2021 12:01:25 GMT expires: - '-1' pragma: @@ -2939,6 +3045,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: @@ -2958,15 +3066,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2975,7 +3083,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:06 GMT + - Tue, 12 Jan 2021 12:01:26 GMT expires: - '-1' pragma: @@ -2990,6 +3098,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '134' x-powered-by: - ASP.NET status: @@ -3009,15 +3119,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3026,7 +3136,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:08 GMT + - Tue, 12 Jan 2021 12:01:27 GMT expires: - '-1' pragma: @@ -3041,6 +3151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -3060,15 +3172,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3077,7 +3189,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:09 GMT + - Tue, 12 Jan 2021 12:01:28 GMT expires: - '-1' pragma: @@ -3092,6 +3204,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' x-powered-by: - ASP.NET status: @@ -3111,15 +3225,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3128,7 +3242,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:11 GMT + - Tue, 12 Jan 2021 12:01:29 GMT expires: - '-1' pragma: @@ -3143,6 +3257,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' x-powered-by: - ASP.NET status: @@ -3162,15 +3278,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3179,7 +3295,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:12 GMT + - Tue, 12 Jan 2021 12:01:30 GMT expires: - '-1' pragma: @@ -3194,6 +3310,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -3213,15 +3331,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3230,7 +3348,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:13 GMT + - Tue, 12 Jan 2021 12:01:31 GMT expires: - '-1' pragma: @@ -3245,6 +3363,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -3264,15 +3384,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3281,7 +3401,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:15 GMT + - Tue, 12 Jan 2021 12:01:33 GMT expires: - '-1' pragma: @@ -3296,6 +3416,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' x-powered-by: - ASP.NET status: @@ -3315,15 +3437,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3332,7 +3454,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:16 GMT + - Tue, 12 Jan 2021 12:01:35 GMT expires: - '-1' pragma: @@ -3347,6 +3469,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' x-powered-by: - ASP.NET status: @@ -3366,15 +3490,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3383,7 +3507,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:17 GMT + - Tue, 12 Jan 2021 12:01:36 GMT expires: - '-1' pragma: @@ -3398,6 +3522,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' x-powered-by: - ASP.NET status: @@ -3417,15 +3543,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3434,7 +3560,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:19 GMT + - Tue, 12 Jan 2021 12:01:37 GMT expires: - '-1' pragma: @@ -3449,6 +3575,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: @@ -3468,15 +3596,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3485,7 +3613,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:19 GMT + - Tue, 12 Jan 2021 12:01:38 GMT expires: - '-1' pragma: @@ -3500,6 +3628,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: @@ -3519,15 +3649,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 response: body: - string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"Succeeded","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"2019-10-10T12:31:47.9798841Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4468c606-306c-4e8f-a554-3fb8453772ca"}}' + string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"Succeeded","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"2021-01-12T12:01:06.4411789Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a5d09b3e-fb90-4434-85bc-d944a7ac4298"}}' headers: cache-control: - no-cache @@ -3536,7 +3666,7 @@ interactions: content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:21 GMT + - Tue, 12 Jan 2021 12:01:39 GMT expires: - '-1' pragma: @@ -3551,6 +3681,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: @@ -3570,24 +3702,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/4468c606-306c-4e8f-a554-3fb8453772ca?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a5d09b3e-fb90-4434-85bc-d944a7ac4298?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4468c606-306c-4e8f-a554-3fb8453772ca","name":"4468c606-306c-4e8f-a554-3fb8453772ca","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.0290175S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"2019-10-10T12:32:21.0089016Z","activityId":"ecaf8640-eb59-11e9-9d1c-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a5d09b3e-fb90-4434-85bc-d944a7ac4298","name":"a5d09b3e-fb90-4434-85bc-d944a7ac4298","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.7835908S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"2021-01-12T12:01:39.2247697Z","activityId":"d8941586-54cd-11eb-b8f6-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '694' + - '717' content-type: - application/json date: - - Thu, 10 Oct 2019 12:32:21 GMT + - Tue, 12 Jan 2021 12:01:40 GMT expires: - '-1' pragma: @@ -3603,6 +3735,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: 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 7bbc45521c8..2c7cc55a340 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,24 +13,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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=2020-10-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":8,"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","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":33,"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: - - '1220' + - '1221' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:42 GMT + - Tue, 12 Jan 2021 09:30:26 GMT expires: - '-1' pragma: @@ -45,6 +45,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -64,24 +66,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2020-02-10T08:41:33.0264375Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-01-03T17:04:14Z","recoveryPointCount":945,"policyState":"Consistent"},"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":"2020-02-10T08:40:31Z"}}' + 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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","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-01-12T08:40:11Z"}}' headers: cache-control: - no-cache content-length: - - '1605' + - '1947' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:46 GMT + - Tue, 12 Jan 2021 09:30:28 GMT expires: - '-1' pragma: @@ -96,6 +98,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -115,24 +119,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2020-02-10T08:41:33.0264375Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-01-03T17:04:14Z","recoveryPointCount":945,"policyState":"Consistent"},"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":"2020-02-10T08:40:31Z"}}' + 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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","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-01-12T08:40:11Z"}}' headers: cache-control: - no-cache content-length: - - '1605' + - '1947' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:47 GMT + - Tue, 12 Jan 2021 09:30:29 GMT expires: - '-1' pragma: @@ -147,6 +151,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -166,24 +172,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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/5001161106707","name":"5001161106707","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-09T17:04:15Z","type":"Full"}},{"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/12366356218408","name":"12366356218408","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-08T17:04:15Z","type":"Full"}},{"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/6660119376607","name":"6660119376607","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-07T17:04:15Z","type":"Full"}},{"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/6098970885719","name":"6098970885719","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-06T17:04:15Z","type":"Full"}},{"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/10026267562311","name":"10026267562311","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-05T17:04:15Z","type":"Full"}},{"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/5204995196208","name":"5204995196208","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-04T17:04:14Z","type":"Full"}},{"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/14725445345716","name":"14725445345716","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-03T17:04:15Z","type":"Full"}},{"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/17207467690654","name":"17207467690654","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-03T15:54:56Z","type":"Full"}},{"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/16167054848550","name":"16167054848550","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-03T15:38:42Z","type":"Full"}},{"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/3991727470073","name":"3991727470073","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-03T15:27:42Z","type":"Full"}},{"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/9191929999691","name":"9191929999691","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-02T17:04:14Z","type":"Full"}},{"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/882469890452","name":"882469890452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-02-01T17:04:14Z","type":"Full"}},{"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/1066940920664","name":"1066940920664","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-31T17:04:15Z","type":"Full"}},{"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/5211583166361","name":"5211583166361","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-31T11:42:01Z","type":"Full"}},{"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/643278864871","name":"643278864871","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-30T17:04:14Z","type":"Full"}},{"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/10454016666815","name":"10454016666815","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-29T17:04:14Z","type":"Full"}},{"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/6448554044717","name":"6448554044717","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-28T17:04:14Z","type":"Full"}},{"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/1673986409676","name":"1673986409676","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-27T17:04:14Z","type":"Full"}},{"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/1085114324430","name":"1085114324430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-26T17:04:14Z","type":"Full"}},{"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/1719376177049","name":"1719376177049","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-25T17:04:15Z","type":"Full"}},{"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/8814757750063","name":"8814757750063","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-24T17:04:15Z","type":"Full"}},{"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/4323938268914","name":"4323938268914","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-23T17:04:16Z","type":"Full"}},{"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/4132194720395","name":"4132194720395","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-22T17:04:14Z","type":"Full"}},{"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/16997071308064","name":"16997071308064","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-21T17:04:15Z","type":"Full"}},{"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/8338748828898","name":"8338748828898","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-20T17:04:15Z","type":"Full"}},{"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/1410816406822","name":"1410816406822","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-19T17:04:16Z","type":"Full"}},{"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/4877879967088","name":"4877879967088","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-18T17:04:16Z","type":"Full"}},{"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/10647032707530","name":"10647032707530","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-17T17:04:15Z","type":"Full"}},{"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/2646737944619","name":"2646737944619","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-16T17:04:15Z","type":"Full"}},{"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/7410109577393","name":"7410109577393","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-15T17:04:20Z","type":"Full"}},{"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/7838091571625","name":"7838091571625","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-14T17:04:15Z","type":"Full"}},{"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/1133014724814","name":"1133014724814","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-13T17:04:14Z","type":"Full"}},{"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/6333419893853","name":"6333419893853","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-12T17:04:14Z","type":"Full"}},{"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/11552580560393","name":"11552580560393","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-11T17:04:15Z","type":"Full"}},{"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/5287218315083","name":"5287218315083","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-10T17:04:14Z","type":"Full"}},{"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/10974401096760","name":"10974401096760","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-09T17:04:16Z","type":"Full"}},{"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/11093484594959","name":"11093484594959","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-08T17:04:15Z","type":"Full"}},{"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/29816914994","name":"29816914994","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-07T17:04:15Z","type":"Full"}},{"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/6944023540600","name":"6944023540600","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-06T17:04:14Z","type":"Full"}},{"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/2352514653741","name":"2352514653741","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-05T17:04:14Z","type":"Full"}},{"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/10185121504506","name":"10185121504506","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-04T17:04:14Z","type":"Full"}},{"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/16732551916434","name":"16732551916434","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-01-03T17:04:14Z","type":"Full"}},{"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":"2020-01-31T11:42:01Z","endTime":"2020-02-10T08:40:31Z"},{"startTime":"2020-01-11T09:13:50.6690497Z","endTime":"2020-01-31T10:40:31Z"}],"type":"Log"}}]}' + 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/12230670840325","name":"12230670840325","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-11T17:03:54Z","type":"Full"}},{"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/8367542389989","name":"8367542389989","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-10T17:03:54Z","type":"Full"}},{"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/11392636916547","name":"11392636916547","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-09T17:03:54Z","type":"Full"}},{"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/17533383867453","name":"17533383867453","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-08T17:03:54Z","type":"Full"}},{"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/17423561477632","name":"17423561477632","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-07T17:03:54Z","type":"Full"}},{"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/13279583030592","name":"13279583030592","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-06T17:03:54Z","type":"Full"}},{"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/5267075391197","name":"5267075391197","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-05T17:03:55Z","type":"Full"}},{"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/11102078846944","name":"11102078846944","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-04T17:03:54Z","type":"Full"}},{"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/6434010632366","name":"6434010632366","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-03T17:03:54Z","type":"Full"}},{"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/8513974938900","name":"8513974938900","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-02T17:03:54Z","type":"Full"}},{"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/7431236845536","name":"7431236845536","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-01T17:03:54Z","type":"Full"}},{"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/7707905291377","name":"7707905291377","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-31T17:03:55Z","type":"Full"}},{"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/681061724633","name":"681061724633","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-30T17:03:54Z","type":"Full"}},{"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/5630557797112","name":"5630557797112","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-29T17:03:54Z","type":"Full"}},{"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/2715259924455","name":"2715259924455","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-28T17:03:55Z","type":"Full"}},{"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/11456243954603","name":"11456243954603","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-27T17:03:54Z","type":"Full"}},{"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/1223665029855","name":"1223665029855","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-26T17:03:54Z","type":"Full"}},{"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/7025554519959","name":"7025554519959","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-25T17:03:55Z","type":"Full"}},{"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/4228728185136","name":"4228728185136","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-24T17:03:55Z","type":"Full"}},{"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/4863330969755","name":"4863330969755","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-23T17:03:54Z","type":"Full"}},{"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/12596403200681","name":"12596403200681","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-22T17:03:54Z","type":"Full"}},{"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/5037183837960","name":"5037183837960","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-21T17:03:54Z","type":"Full"}},{"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/10363389243884","name":"10363389243884","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-20T17:03:54Z","type":"Full"}},{"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/6143390996733","name":"6143390996733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-19T17:03:56Z","type":"Full"}},{"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/1226646340662","name":"1226646340662","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-18T17:03:54Z","type":"Full"}},{"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/9895190829017","name":"9895190829017","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-17T17:03:54Z","type":"Full"}},{"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/3772724239813","name":"3772724239813","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-16T17:03:54Z","type":"Full"}},{"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/12381916150045","name":"12381916150045","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-15T17:03:55Z","type":"Full"}},{"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/10330260876606","name":"10330260876606","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-14T17:03:54Z","type":"Full"}},{"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/415274538680","name":"415274538680","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-13T17:03:54Z","type":"Full"}},{"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/6934416373366","name":"6934416373366","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-12T17:03:54Z","type":"Full"}},{"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/8374186160037","name":"8374186160037","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-11T17:03:54Z","type":"Full"}},{"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/5212182809631","name":"5212182809631","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-10T17:03:54Z","type":"Full"}},{"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/6117274419023","name":"6117274419023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-09T17:03:54Z","type":"Full"}},{"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/3507370923225","name":"3507370923225","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-08T17:03:54Z","type":"Full"}},{"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/9980050147452","name":"9980050147452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-07T17:03:54Z","type":"Full"}},{"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/7853863498617","name":"7853863498617","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-06T17:03:54Z","type":"Full"}},{"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/12719792808436","name":"12719792808436","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-05T17:03:54Z","type":"Full"}},{"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":"2020-12-13T09:30:30.6092682Z","endTime":"2021-01-12T08:40:11Z"}],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '27268' + - '24680' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:50 GMT + - Tue, 12 Jan 2021 09:30:29 GMT expires: - '-1' pragma: @@ -198,6 +204,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -218,24 +226,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2016-12-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=2020-10-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":8,"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","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":33,"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: - - '1220' + - '1221' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:52 GMT + - Tue, 12 Jan 2021 09:30:30 GMT expires: - '-1' pragma: @@ -250,6 +258,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -270,24 +280,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2020-02-10T08:41:33.0264375Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-01-03T17:04:14Z","recoveryPointCount":945,"policyState":"Consistent"},"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":"2020-02-10T08:40:31Z"}}' + 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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","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-01-12T08:40:11Z"}}' headers: cache-control: - no-cache content-length: - - '1605' + - '1947' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:53 GMT + - Tue, 12 Jan 2021 09:30:32 GMT expires: - '-1' pragma: @@ -302,6 +312,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -322,24 +334,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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=2019-06-15 + 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=2020-10-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":{"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2020-02-10T08:41:33.0264375Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-01-03T17:04:14Z","recoveryPointCount":945,"policyState":"Consistent"},"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":"2020-02-10T08:40:31Z"}}' + 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":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"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-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","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-01-12T08:40:11Z"}}' headers: cache-control: - no-cache content-length: - - '1605' + - '1947' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:54 GMT + - Tue, 12 Jan 2021 09:30:33 GMT expires: - '-1' pragma: @@ -354,6 +366,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -374,24 +388,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/5001161106707?api-version=2019-06-15 + 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/12230670840325?api-version=2020-10-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/5001161106707","name":"5001161106707","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2020-02-09T17:04:15Z","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":"2020-02-09T17:04:15Z","type":"Full"}}' + 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/12230670840325","name":"12230670840325","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-11T17: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-01-11T17:03:54Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '901' + - '903' content-type: - application/json date: - - Mon, 10 Feb 2020 09:13:56 GMT + - Tue, 12 Jan 2021 09:30:34 GMT expires: - '-1' pragma: @@ -406,6 +420,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -433,28 +449,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/5001161106707/restore?api-version=2019-06-15 + 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/12230670840325/restore?api-version=2020-10-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/f533d9b2-3d27-48c9-815b-cc9af6a31a1d?api-version=2019-06-15 + - 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/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 10 Feb 2020 09:13:58 GMT + - Tue, 12 Jan 2021 09:30:34 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/f533d9b2-3d27-48c9-815b-cc9af6a31a1d?api-version=2019-06-15 + - 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/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -462,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -482,15 +498,68 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/f533d9b2-3d27-48c9-815b-cc9af6a31a1d?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 response: body: - string: '{"id":"f533d9b2-3d27-48c9-815b-cc9af6a31a1d","name":"f533d9b2-3d27-48c9-815b-cc9af6a31a1d","status":"Succeeded","startTime":"2020-02-10T09:13:58.5479108Z","endTime":"2020-02-10T09:13:58.5479108Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e26100bc-f989-4834-bbd8-cf0ecf45078c"}}' + string: '{"id":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","name":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 12 Jan 2021 09: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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + 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/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 + response: + body: + string: '{"id":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","name":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","status":"Succeeded","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"2021-01-12T09:30:34.7378037Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b58b7c4f-3678-4670-ac4e-66af30cb1521"}}' headers: cache-control: - no-cache @@ -499,7 +568,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Feb 2020 09:14:00 GMT + - Tue, 12 Jan 2021 09:30:36 GMT expires: - '-1' pragma: @@ -514,6 +583,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -533,26 +604,24 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.8165692S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT2.6774647S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '834' + - '711' content-type: - application/json date: - - Mon, 10 Feb 2020 09:14:01 GMT + - Tue, 12 Jan 2021 09:30:37 GMT expires: - '-1' pragma: @@ -568,6 +637,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -587,26 +658,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4.4890504S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT3.0373271S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '834' + - '711' content-type: - application/json date: - - Mon, 10 Feb 2020 09:14:02 GMT + - Tue, 12 Jan 2021 09:30:37 GMT expires: - '-1' pragma: @@ -622,6 +691,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -641,26 +712,24 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5.0791642S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT3.3018788S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '834' + - '711' content-type: - application/json date: - - Mon, 10 Feb 2020 09:14:03 GMT + - Tue, 12 Jan 2021 09:30:37 GMT expires: - '-1' pragma: @@ -676,6 +745,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' x-powered-by: - ASP.NET status: @@ -695,26 +766,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT35.6602504S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.6207049S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '835' + - '846' content-type: - application/json date: - - Mon, 10 Feb 2020 09:14:34 GMT + - Tue, 12 Jan 2021 09:31:07 GMT expires: - '-1' pragma: @@ -730,6 +802,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: @@ -749,26 +823,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M6.233596S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.8336259S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '835' + - '847' content-type: - application/json date: - - Mon, 10 Feb 2020 09:15:04 GMT + - Tue, 12 Jan 2021 09:31:37 GMT expires: - '-1' pragma: @@ -784,6 +859,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: @@ -803,26 +880,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M37.6229038S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M34.0521158S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '837' + - '848' content-type: - application/json date: - - Mon, 10 Feb 2020 09:15:36 GMT + - Tue, 12 Jan 2021 09:32:08 GMT expires: - '-1' pragma: @@ -838,6 +916,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -857,26 +937,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M8.2274611S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.2960942S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '836' + - '847' content-type: - application/json date: - - Mon, 10 Feb 2020 09:16:06 GMT + - Tue, 12 Jan 2021 09:32:38 GMT expires: - '-1' pragma: @@ -892,6 +973,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' x-powered-by: - ASP.NET status: @@ -911,26 +994,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M38.8616311S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M34.5262895S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2020-02-10T09:13:58.5479108Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 + [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '837' + - '848' content-type: - application/json date: - - Mon, 10 Feb 2020 09:16:37 GMT + - Tue, 12 Jan 2021 09:33:08 GMT expires: - '-1' pragma: @@ -946,6 +1030,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -965,29 +1051,29 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-recoveryservicesbackup/0.6.0 Azure-SDK-For-Python AZURECLI/2.0.81 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 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/e26100bc-f989-4834-bbd8-cf0ecf45078c?api-version=2019-06-15 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/e26100bc-f989-4834-bbd8-cf0ecf45078c","name":"e26100bc-f989-4834-bbd8-cf0ecf45078c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.4756561S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.350806S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"4.0825","Job Type":"Restore as files","RestoreRecoveryPointTime":"2020-02-09 - 17:04:15Z","RestoreDestination":"C:"}},"entityFriendlyName":"MSSQLSERVER/navigate-testdb2 + MB)":"4.0825","Job Type":"Restore as files","RestoreRecoveryPointTime":"2021-01-11 + 17:03:54Z","RestoreDestination":"C:"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore - (Full)","status":"Completed","startTime":"2020-02-10T09:13:58.5479108Z","endTime":"2020-02-10T09:17:02.0235669Z","activityId":"aa9a7474-4be5-11ea-aa72-186024943d4f"}}' + (Full)","status":"Completed","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"2021-01-12T09:33:38.0886097Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' headers: cache-control: - no-cache content-length: - - '994' + - '1004' content-type: - application/json date: - - Mon, 10 Feb 2020 09:17:07 GMT + - Tue, 12 Jan 2021 09:33:39 GMT expires: - '-1' pragma: @@ -1003,6 +1089,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml index aa662d8c455..95dfd9d8fc0 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml @@ -11,26 +11,42 @@ interactions: Connection: - keep-alive ParameterSetName: - - -v -g -b + - -v -g --backup-management-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-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/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T05:02:19.5060926Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure + Backup service is not able to connect to the SQL instance.","recommendations":["Please + refer to the general troubleshooting information about SQL connection failures. + For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: + Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application + Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-12T07:20:11.8845026Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '1171' + - '4879' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:38 GMT + - Tue, 12 Jan 2021 08:56:37 GMT expires: - '-1' pragma: @@ -45,6 +61,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -58,340 +76,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protectable-item show - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -s -n -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3966' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2016-12-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '1076' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup", - "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - Content-Length: - - '329' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1?api-version=2019-06-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationsStatus/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 08 Jul 2019 05:04:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-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-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -v -g -p -p + - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 response: body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1693' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:45 GMT + - Tue, 12 Jan 2021 08:56:37 GMT expires: - '-1' pragma: @@ -406,6 +117,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -419,30 +132,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -v -g -p -p + - -g -v -c -i --workload-type --query User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb/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: - - '188' + - '590' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:46 GMT + - Tue, 12 Jan 2021 08:56:39 GMT expires: - '-1' pragma: @@ -457,6 +170,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -470,30 +185,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - - -v -g -p -p + - -g -v -c -i --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 response: body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1693' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:47 GMT + - Tue, 12 Jan 2021 08:56:40 GMT expires: - '-1' pragma: @@ -508,6 +226,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -521,30 +241,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - - -v -g -p -p + - -g -v -c -i --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 response: body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb/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: - - '188' + - '590' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:49 GMT + - Tue, 12 Jan 2021 08:56:41 GMT expires: - '-1' pragma: @@ -559,6 +279,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -572,30 +294,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - - -v -g -p -p + - -g -v -c -i --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 response: body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1693' content-type: - application/json date: - - Mon, 08 Jul 2019 05:04:50 GMT + - Tue, 12 Jan 2021 08:56:42 GMT expires: - '-1' pragma: @@ -610,6 +335,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -623,6900 +350,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:04:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 - response: - body: - string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"Succeeded","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"2019-07-08T05:04:40.8344396Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7b29b348-86be-4292-a3b0-f26bfaa53563"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -p - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/7b29b348-86be-4292-a3b0-f26bfaa53563?api-version=2017-07-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/7b29b348-86be-4292-a3b0-f26bfaa53563","name":"7b29b348-86be-4292-a3b0-f26bfaa53563","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.0277697S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"2019-07-08T05:05:54.8622093Z","activityId":"e3b789d4-a13d-11e9-b542-3c52826c1986"}}' - headers: - cache-control: - - no-cache - content-length: - - '739' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -c -i -w --query - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' - headers: - cache-control: - - no-cache - content-length: - - '1409' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05: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-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 -c -i -w --query - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2019-06-15 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/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: - - '591' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint logchain show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' - headers: - cache-control: - - no-cache - content-length: - - '1409' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:05:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint logchain show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2019-06-15&$filter=restorePointQueryType%20eq%20%27Log%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/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: - - '591' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint logchain show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2019-06-15 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' - headers: - cache-control: - - no-cache - content-length: - - '1409' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint logchain show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i -w - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2019-06-15&$filter=restorePointQueryType%20eq%20%27Log%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/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: - - '591' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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: - - -v -g -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1?api-version=2019-06-15 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 08 Jul 2019 05:06:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-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: - - -v -g -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 - response: - body: - string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"Succeeded","startTime":"2019-07-08T05:06:02.547331Z","endTime":"2019-07-08T05:06:02.547331Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"057e5a88-ecb6-448c-9eeb-2d8b35a74f53"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -i -y --delete-backup-data - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/057e5a88-ecb6-448c-9eeb-2d8b35a74f53?api-version=2017-07-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/057e5a88-ecb6-448c-9eeb-2d8b35a74f53","name":"057e5a88-ecb6-448c-9eeb-2d8b35a74f53","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.1883808S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T05:06:02.547331Z","endTime":"2019-07-08T05:06:34.7357118Z","activityId":"14d6e0c6-a13e-11e9-86bc-3c52826c1986"}}' - headers: - cache-control: - - no-cache - content-length: - - '706' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06: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-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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 08 Jul 2019 05:06:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:06:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '{}' - headers: - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 08 Jul 2019 05:07:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 -n -y - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Mon, 08 Jul 2019 05:07:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list + - backup recoverypoint show-log-chain Connection: - keep-alive ParameterSetName: - - -v -g -b + - -g -v -c -i --workload-type User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 - Azure-SDK-For-Python AZURECLI/2.0.68 + - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb/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: - - '12' + - '590' content-type: - application/json date: - - Mon, 08 Jul 2019 05:07:54 GMT + - Tue, 12 Jan 2021 08:56:43 GMT expires: - '-1' pragma: @@ -7531,6 +388,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py index 38d3a478d99..d36b349851f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py @@ -6,7 +6,7 @@ import json from datetime import datetime, timedelta import unittest - +import time from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, ResourceGroupPreparer, \ StorageAccountPreparer, record_only from .preparers import VaultPreparer, FileSharePreparer, AFSPolicyPreparer, AFSItemPreparer, \ @@ -54,6 +54,7 @@ def test_afs_backup_scenario(self, resource_group, vault_name, storage_account, # Disable Protection self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {item} --backup-management-type AzureStorage --delete-backup-data true --yes') self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -101,6 +102,7 @@ def test_afs_backup_container(self, resource_group, vault_name, storage_account, self.cmd('backup protection disable -g {rg} -v {vault} -c {sa2} -i {item2} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup container unregister -g {rg} -v {vault} -c {sa1} --yes --backup-management-type AzureStorage') self.cmd('backup container unregister -g {rg} -v {vault} -c {sa2} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -168,6 +170,7 @@ def test_afs_backup_item(self, resource_group, vault_name, storage_account, afs_ self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {item1} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {item2} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -208,6 +211,7 @@ def test_afs_backup_rp(self, resource_group, vault_name, storage_account, afs_na self.assertTrue(rp_count1 + 1 == rp_count2) self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {item1} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -328,6 +332,7 @@ def test_afs_backup_restore(self, resource_group, vault_name, storage_account, f self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {item1} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -380,6 +385,7 @@ def test_afs_backup_protection(self, resource_group, vault_name, storage_account self.assertTrue(protected_item_count1 == protected_item_count2 + 1) self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -436,6 +442,7 @@ def test_afs_backup_policy(self, resource_group, vault_name, storage_account, af self.kwargs['afsitem'] = self.cmd('backup item list -g {rg} -v {vault} -c {container} --backup-management-type AzureStorage --query [0].name').get_output_in_json() self.cmd('backup protection disable -g {rg} -v {vault} -c {container} -i {afsitem} --backup-management-type AzureStorage --delete-backup-data true --yes').get_output_in_json() self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') + time.sleep(100) @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @@ -471,3 +478,4 @@ def test_afs_unregister_container(self, resource_group, vault_name, storage_acco self.cmd('backup container list -v {vault} -g {rg} --backup-management-type {type}', checks=[ self.check("length([?properties.friendlyName == '{container}'])", 0)]) + time.sleep(100) 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 ef933b09e21..58186c0dabb 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 @@ -6,6 +6,7 @@ import json from datetime import datetime, timedelta import unittest +import time from azure.cli.testsdk import ScenarioTest, JMESPathCheckExists, ResourceGroupPreparer, \ StorageAccountPreparer, record_only @@ -129,7 +130,7 @@ def test_backup_vault(self, resource_group, resource_group_location, vault1, vau self.kwargs['model'] = new_storage_model self.cmd('backup vault backup-properties set -n {vault1} -g {rg} --backup-storage-redundancy {model}') - + time.sleep(300) self.cmd('backup vault backup-properties show -n {vault1} -g {rg} --query [0]', checks=[ self.check('properties.storageModelType', new_storage_model) ]) @@ -434,14 +435,24 @@ def test_backup_protection(self, resource_group, vault_name, vm_name): @ItemPreparer() @RPPreparer() @StorageAccountPreparer(location="southeastasia") - def test_backup_restore(self, resource_group, target_resource_group, vault_name, vm_name, storage_account): + @StorageAccountPreparer(parameter_name="secondary_region_sa", location="eastasia") + def test_backup_restore(self, resource_group, target_resource_group, vault_name, vm_name, storage_account, secondary_region_sa): self.kwargs.update({ 'vault': vault_name, 'vm': vm_name, 'target_rg': target_resource_group, - 'rg': resource_group + 'rg': resource_group, + 'sa': storage_account, + 'secondary_sa': secondary_region_sa, + 'vm_id': "VM;iaasvmcontainerv2;" + resource_group + ";" + vm_name, + 'container_id': "IaasVMContainer;iaasvmcontainerv2;" + resource_group + ";" + vm_name }) + self.cmd('backup vault backup-properties set -g {rg} -n {vault} --cross-region-restore-flag true', checks=[ + self.check("properties.crossRegionRestoreFlag", True) + ]).get_output_in_json() + time.sleep(300) + self.kwargs['rp'] = self.cmd('backup recoverypoint list --backup-management-type AzureIaasVM --workload-type VM -g {rg} -v {vault} -c {vm} -i {vm} --query [0].name').get_output_in_json() # Original Storage Account Restore Fails @@ -490,6 +501,24 @@ def test_backup_restore(self, resource_group, target_resource_group, vault_name, self.check("resourceGroup", '{rg}') ]) + # Trigger Cross Region Restore + self.kwargs['crr_rp'] = self.cmd('backup recoverypoint list --backup-management-type AzureIaasVM --workload-type VM -g {rg} -v {vault} -c {container_id} -i {vm_id} --use-secondary-region --query [0].name').get_output_in_json() + + trigger_restore_job3_json = self.cmd('backup restore restore-disks -g {rg} -v {vault} -c {container_id} -i {vm_id} -r {crr_rp} --storage-account {secondary_sa} -t {target_rg} --use-secondary-region', checks=[ + self.check("properties.entityFriendlyName", vm_name), + self.check("properties.operation", "CrossRegionRestore"), + self.check("properties.status", "InProgress") + ]).get_output_in_json() + self.kwargs['job3'] = trigger_restore_job3_json['name'] + + self.cmd('backup job wait -g {rg} -v {vault} -n {job3} --use-secondary-region') + + self.cmd('backup job show -g {rg} -v {vault} -n {job3} --use-secondary-region', checks=[ + self.check("properties.entityFriendlyName", vm_name), + self.check("properties.operation", "CrossRegionRestore"), + self.check("properties.status", "Completed") + ]) + @ResourceGroupPreparer(location="southeastasia") @VaultPreparer() @VMPreparer() 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 324f5665ae9..6d771f23456 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 @@ -11,22 +11,22 @@ id_sql = '/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8' -id_hana = '/subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3' -item_id_sql = '/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1' +id_hana = '/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy' +item_id_sql = '/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb' item_id_hana = '/Subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22' sub_sql = 'da364f0f-307b-41c9-9d47-b7413ec45535' -sub_hana = 'e3d2d341-4ddb-4c5d-9121-69b7e719485e' +sub_hana = 'da364f0f-307b-41c9-9d47-b7413ec45535' rg_sql = 'pstestwlRG1bca8' -rg_hana = 'IDCDemo' +rg_hana = 'akneema' vault_sql = 'pstestwlRSV1bca8' -vault_hana = 'IDCDemoVault' +vault_hana = 'akneema-vault-ccy' container_sql = 'VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8' -container_hana = 'VMAppContainer;Compute;IDCDemo;HANADemoIDC3' +container_hana = 'VMAppContainer;Compute;akneema;akneema-hana-ccy' container_friendly_sql = 'pstestwlvm1bca8' -container_friendly_hana = 'HANADemoIDC3' +container_friendly_hana = 'akneema-hana-ccy' item_auto_sql = 'SQLInstance;mssqlserver' item_auto_hana = 'SAPHanaSystem;H22' -item1_sql = 'SQLDataBase;MSSQLSERVER;testdb1' +item1_sql = 'SQLDataBase;MSSQLSERVER;testdb' item2_sql = 'msdb' item1_hana = 'SAPHanaDatabase;H22;h22' item2_hana = 'SYSTEMDB' @@ -211,10 +211,10 @@ def test_backup_wl_hana_policy(self): 'vault': vault_hana, 'name': container_hana, 'fname': container_friendly_hana, - 'policy': 'DemoBackup', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'default': 'DemoBackup', + 'default': 'hana-policy-ccy', 'rg': rg_hana, 'item': item1_hana, 'id': id_hana, @@ -350,14 +350,14 @@ def test_backup_wl_hana_item(self): self.kwargs.update({ 'vault': vault_hana, 'name': container_hana, - 'fname': container_friendly_hana, - 'policy': 'HourlyLogBackup', + 'fname': 'hxehost', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'default': 'HourlyLogBackup', - 'rg': "idcdemo", - 'item': "saphanadatabase;h22;h22_restored_sarath", - 'fitem': "h22_restored_sarath", + 'default': 'hana-policy-ccy', + 'rg': rg_hana, + 'item': "saphanadatabase;hxe;systemdb", + 'fitem': "systemdb", 'id': id_hana, 'item_id': item_id_hana_2, 'pit': 'SAPHanaDatabase' @@ -404,17 +404,17 @@ def test_backup_wl_hana_item(self): ]) self.cmd('backup item list -g {rg} -v {vault} -c {container1} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ - self.check("length(@)", 6), + self.check("length(@)", 1), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) self.cmd('backup item list -g {rg} -v {vault} -c {container1_fullname} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ - self.check("length(@)", 6), + self.check("length(@)", 1), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) self.cmd('backup item list -g {rg} -v {vault} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ - self.check("length(@)", 8), + self.check("length(@)", 1), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) @@ -426,7 +426,7 @@ def test_backup_wl_hana_item(self): ]) item1_json = self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase').get_output_in_json() - self.assertIn("HourlyLogBackup".lower(), item1_json['properties']['policyId'].lower()) + self.assertIn("hana-policy-ccy".lower(), item1_json['properties']['policyId'].lower()) self.cmd('backup protection disable -v {vault} -g {rg} -c {container1} --backup-management-type AzureWorkload --workload-type {wt} -i {item} -y --delete-backup-data true') @@ -446,7 +446,7 @@ def test_backup_wl_sql_protectable_item(self): 'id': id_sql, 'item_id': item_id_sql, 'pit': 'SQLDataBase', - 'protectable_item_name': 'newdb', + 'protectable_item_name': 'testdb', 'pit_hana': 'SAPHanaDatabase' }) @@ -457,12 +457,6 @@ def test_backup_wl_sql_protectable_item(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --query properties.friendlyName --backup-management-type AzureWorkload').get_output_in_json() - self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ - self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 0) - ]) - - self.cmd('backup protectable-item initialize -g {rg} --vault-name {vault} --workload-type {wt} --container-name {name}') - self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) ]) @@ -485,17 +479,17 @@ def test_backup_wl_hana_protectable_item(self): self.kwargs.update({ 'vault': vault_hana, 'name': container_hana, - 'fname': container_friendly_hana, - 'policy': 'HourlyLogBackup', + 'fname': 'hxehost', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'default': 'HourlyLogBackup', + 'default': 'hana-policy-ccy', 'rg': rg_hana, 'item': item1_hana, 'id': id_hana, 'item_id': item_id_hana, 'pit': 'SAPHanaDatabase', - 'protectable_item_name': 'NEWDB', + 'protectable_item_name': 'SYSTEMDB', 'pit_hana': 'SAPHanaDatabase' }) @@ -506,12 +500,6 @@ def test_backup_wl_hana_protectable_item(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --query properties.friendlyName --backup-management-type AzureWorkload').get_output_in_json() - self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ - self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 0) - ]) - - self.cmd('backup protectable-item initialize -g {rg} --vault-name {vault} --workload-type {wt} --container-name {name}') - self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) ]) @@ -569,10 +557,10 @@ def test_backup_wl_hana_rp(self): 'name': container_hana, 'rg': resource_group, 'fname': container_friendly_hana, - 'policy': 'HourlyLogBackup', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'item': 'saphanadatabase;h22;h22_restored_sarath', + 'item': 'saphanadatabase;hxe;systemdb', 'pit': 'HANADatabase', 'item_id': item_id_hana, 'id': id_hana @@ -610,7 +598,7 @@ def test_backup_wl_sql_protection(self): 'id': id_sql, 'item_id': item_id_sql, 'pit': "SQLDataBase", - 'entityFriendlyName': 'MSSQLSERVER/msdb [sarathvm]' + 'entityFriendlyName': 'msdb [sarathvm]' }) self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ @@ -625,9 +613,8 @@ def test_backup_wl_sql_protection(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() - self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), - self.check("properties.operation", "Backup"), + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --enable-compression false', checks=[ + self.check("properties.operation", "Backup (Full)"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') ]).get_output_in_json() @@ -663,18 +650,18 @@ def test_backup_wl_hana_protection(self): self.kwargs.update({ 'vault': vault_hana, 'name': container_hana, - 'fname': container_friendly_hana, - 'policy': 'HourlyLogBackup', + 'fname': 'hxehost', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'default': 'HourlyLogBackup', - 'rg': "idcdemo", - 'item': "saphanadatabase;h22;h22_restored_sarath", - 'fitem': "h22_restored_sarath", + 'default': 'hana-policy-ccy', + 'rg': rg_hana, + 'item': "saphanadatabase;hxe;systemdb", + 'fitem': "systemdb", 'id': id_hana, 'item_id': item_id_hana, 'pit': "SAPHanaDatabase", - 'entityFriendlyName': 'H22/H22_RESTORED_SARATH [HANADemoIDC3]' + 'entityFriendlyName': 'SYSTEMDB [hxehost]' }) self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ @@ -689,9 +676,9 @@ def test_backup_wl_hana_protection(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() - self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --enable-compression false', checks=[ self.check("properties.entityFriendlyName", '{entityFriendlyName}'), - self.check("properties.operation", "Backup"), + self.check("properties.operation", "Backup (Full)"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') ]).get_output_in_json() @@ -762,18 +749,18 @@ def test_backup_wl_hana_restore(self): self.kwargs.update({ 'vault': vault_hana, 'name': container_hana, - 'fname': container_friendly_hana, - 'policy': 'HourlyLogBackup', + 'fname': 'hxehost', + 'policy': 'hana-policy-ccy', 'wt': 'SAPHANA', 'sub': sub_hana, - 'default': 'HourlyLogBackup', + 'default': 'hana-policy-ccy', 'rg': resource_group, - 'item': "saphanadatabase;h22;h22_restored_sarath", - 'fitem': "h22_restored_sarath", + 'item': "saphanadatabase;hxe;systemdb", + 'fitem': "systemdb", 'id': id_hana, 'item_id': item_id_hana, 'pit': 'SAPHanaDatabase', - 'entityFriendlyName': 'H22/H22_RESTORED_SARATH [HANADemoIDC3]', + 'entityFriendlyName': 'SYSTEMDB [hxehost]', 'tpit': 'HANAInstance', 'titem': 'H22' }) @@ -790,9 +777,8 @@ def test_backup_wl_hana_restore(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() - self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -c {name} -i {item} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), - self.check("properties.operation", "Backup"), + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -c {name} -i {item} --backup-type Full --enable-compression false', checks=[ + self.check("properties.operation", "Backup (Full)"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') ]).get_output_in_json() @@ -818,7 +804,6 @@ def test_backup_wl_hana_restore(self): f.write(self.kwargs['rc']) self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), self.check("properties.operation", "Restore"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') @@ -833,7 +818,6 @@ def test_backup_wl_hana_restore(self): f.write(self.kwargs['rc']) self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), self.check("properties.operation", "Restore"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') @@ -874,7 +858,7 @@ def test_backup_wl_sql_restore(self): 'id': id_sql, 'item_id': item_id_sql, 'pit': 'SQLDataBase', - 'entityFriendlyName': 'MSSQLSERVER/msdb [sarathvm]', + 'entityFriendlyName': 'msdb', 'tpit': 'SQLInstance', 'titem': 'MSSQLSERVER' }) @@ -901,7 +885,6 @@ def test_backup_wl_sql_restore(self): f.write(self.kwargs['rc']) self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), self.check("properties.operation", "Restore"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') @@ -916,7 +899,6 @@ def test_backup_wl_sql_restore(self): f.write(self.kwargs['rc']) self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ - self.check("properties.entityFriendlyName", '{entityFriendlyName}'), self.check("properties.operation", "Restore"), self.check("properties.status", "InProgress"), self.check("resourceGroup", '{rg}') diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 87586848081..b502a59c374 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -64,7 +64,7 @@ azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 azure-mgmt-rdbms==3.1.0rc1 azure-mgmt-recoveryservices==0.4.0 -azure-mgmt-recoveryservicesbackup==0.6.0 +azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 azure-mgmt-relay==0.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 87586848081..b502a59c374 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -64,7 +64,7 @@ azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 azure-mgmt-rdbms==3.1.0rc1 azure-mgmt-recoveryservices==0.4.0 -azure-mgmt-recoveryservicesbackup==0.6.0 +azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 azure-mgmt-relay==0.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index ba5f14f10ef..33aba8bd2fc 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -64,7 +64,7 @@ azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==0.1.0 azure-mgmt-rdbms==3.1.0rc1 azure-mgmt-recoveryservices==0.4.0 -azure-mgmt-recoveryservicesbackup==0.6.0 +azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 azure-mgmt-relay==0.1.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 97ea20967d7..8ac0953466f 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -107,7 +107,7 @@ 'azure-mgmt-privatedns~=0.1.0', 'azure-mgmt-rdbms~=3.1.0rc1', 'azure-mgmt-recoveryservices~=0.4.0', - 'azure-mgmt-recoveryservicesbackup~=0.6.0', + 'azure-mgmt-recoveryservicesbackup~=0.11.0', 'azure-mgmt-redhatopenshift==0.1.0', 'azure-mgmt-redis~=7.0.0rc1', 'azure-mgmt-relay~=0.1.0',